Examples
Notebooks
In the folder notebooks several notebooks, using Pluto.jl, for the simulation of GC-systems are available.
To use these notebooks Julia, v1.6 or above, must be installed and Pluto must be added:
julia> ]
(v1.7) pkg> add PlutoTo run Pluto, use the following commands:
julia> using Pluto
julia> Pluto.run()Pluto will open your browser. In the field Open from file the URL of a notebook or the path to a locally downloaded notebook can be insert and the notebook will open and load the necessary packages.
Overview of notebooks
simulation_conventional_GC.jl- simulation of a conventional GC-system (constant temperature, constant diameter and constant film thickness along the column) and outlet pressure as "vacuum" or "atmospheric", now with option of flow or pressure control and temperature program notation in the typical form used in commercial GC software (temperature levels, holding times and heating ramps)simulation_conventional_GC_load_2dbs.jl- simulation of a conventional GC-system (constant temperature, constant diameter and constant film thickness along the column) and loading of up to two different substance databases and simulation of the common substances with the same GC-system and comparing the result. Also, an option is given, to load measured retention times and compare these to the simulations. Same setting for programs as insimulation_conventional_GC.jlsimulation_example.jl- general example of simulation of a GC-system with optional thermal gradient (exponential/linear model of temperature change along the column) and constant diameter and constant film thickness along the column.simulation_example_input_gradient_function.jl- simulation of a GC-system with optional thermal gradient where the temperature change along the column is defined by a user-defined equation (cosine-function as example)
Simulation of measurements
Two measurements from [8] will be simulated and compared to the measured chromatograms. The n-alkanes from n-nonane (C9) to n-triacontane (C30) are separated in a conventional GC and a thermal gradient GC . The database with the thermodynamic parameters is Database_Leppert2020b.csv.
Conventional GC
The conventional GC program simulated here is Prog. D from [8], a temperature program with two heating ramps, constant inlet pressure and a flame ionization detector (FID, atmospheric outlet pressure).
The standard options are used, beside the option ng (non-gradient) is changed to true. Because the conventional GC does not use non-uniform temperature, diameter or film thickness, the model can be simplified and the calculation of the separation is faster.
opt = GasChromatographySimulator.Options(ng=true)GasChromatographySimulator.Options(OwrenZen5(), 1.0e-6, 0.001, "inlet", true, true, "Blumberg", "Pressure")The column has a length of 11.18 m, a diameter of 0.104 mm and a film thickness of 0.104 µm. The stationary phase is labeled as FS5ms and the mobile phase gas is helium:
col = GasChromatographySimulator.Column(11.18, 0.104e-3, 0.104e-6, "FS5ms", "H2");GasChromatographySimulator.Column(11.18, 0.000104, [0.000104], 1.04e-7, [1.04e-7], "FS5ms", "H2")The temperature program starts at 40°C, which is hold for 1 min. The column is heated up to 180°C in 28 min (5°C/min heating ramp), where the temperature is also hold for 1min. Than the column is heated to 300°C in 6 min (20°C/min heating ramp), where the temperature again is kept for 1 min. The inlet pressure is at constant 411564 Pa (absolute) and the outlet pressure is at constant 101300 Pa (absolute) during the program.
prog_D = GasChromatographySimulator.Program([0.0, 60.0, 1680.0, 60.0, 360.0, 60.0], [40.0, 40.0, 180.0, 180.0, 300.0, 300.0], 411564.0*ones(6), 101300.0.*ones(6), col.L);GasChromatographySimulator.Program{GasChromatographySimulator.var"#gf#5"{Matrix{Float64}}}([0.0, 60.0, 1680.0, 60.0, 360.0, 60.0], [40.0, 40.0, 180.0, 180.0, 300.0, 300.0], [411564.0, 411564.0, 411564.0, 411564.0, 411564.0, 411564.0], [101300.0, 101300.0, 101300.0, 101300.0, 101300.0, 101300.0], GasChromatographySimulator.var"#gf#5"{Matrix{Float64}}([0.0 0.0 11.18 0.0; 0.0 0.0 11.18 0.0; … ; 0.0 0.0 11.18 0.0; 0.0 0.0 11.18 0.0]), [0.0 0.0 11.18 0.0; 0.0 0.0 11.18 0.0; … ; 0.0 0.0 11.18 0.0; 0.0 0.0 11.18 0.0], 11181×6 extrapolate(interpolate((0.0:0.001:11.18,::Vector{Float64}), ::Matrix{Float64}, Gridded(Linear())), Flat()) with element type Float64:
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
⋮ ⋮
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15, 6-element extrapolate(interpolate((::Vector{Float64},), ::Vector{Float64}, Gridded(Linear())), Flat()) with element type Float64:
411564.0
411564.0
411564.0
411564.0
411564.0
411564.0, 6-element extrapolate(interpolate((::Vector{Float64},), ::Vector{Float64}, Gridded(Linear())), Flat()) with element type Float64:
101300.0
101300.0
101300.0
101300.0
101300.0
101300.0)We want to use all solutes for the stationary phase FS5ms, which are in the database Database_Leppert2020b.csv. We load the database into a dataframe:
db_dataframe = DataFrame(CSV.File("../../data/Leppert2020b/Database_Leppert2020b.csv", header=1, silencewarnings=true));22 rows × 11 columns
| Name | CAS | Phase | Tchar | thetachar | DeltaCp | phi0 | Source | Cat_1 | Cat_2 | Cat_3 | |
|---|---|---|---|---|---|---|---|---|---|---|---|
| String3 | String15 | String7 | Float64 | Float64 | Float64 | Float64 | String15 | String7 | String7 | String7 | |
| 1 | C9 | 111-84-2 | FS5ms | 98.04 | 30.17 | 89.34 | 0.001 | Leppert2020b | alkane | alkanes | missing |
| 2 | C10 | 124-18-5 | FS5ms | 118.09 | 32.24 | 112.49 | 0.001 | Leppert2020b | alkane | Grob | alkanes |
| 3 | C11 | 1120-21-4 | FS5ms | 137.07 | 33.71 | 116.04 | 0.001 | Leppert2020b | alkane | Grob | alkanes |
| 4 | C12 | 112-40-3 | FS5ms | 154.78 | 34.92 | 121.44 | 0.001 | Leppert2020b | alkane | alkanes | missing |
| 5 | C13 | 629-50-5 | FS5ms | 171.32 | 35.93 | 125.62 | 0.001 | Leppert2020b | alkane | alkanes | missing |
| 6 | C14 | 629-59-4 | FS5ms | 186.83 | 36.76 | 126.76 | 0.001 | Leppert2020b | alkane | alkanes | missing |
| 7 | C15 | 629-62-9 | FS5ms | 201.25 | 37.39 | 129.62 | 0.001 | Leppert2020b | alkane | alkanes | missing |
| 8 | C16 | 544-76-3 | FS5ms | 215.1 | 38.46 | 142.18 | 0.001 | Leppert2020b | alkane | alkanes | missing |
| 9 | C17 | 629-78-7 | FS5ms | 227.91 | 38.95 | 145.36 | 0.001 | Leppert2020b | alkane | alkanes | missing |
| 10 | C18 | 593-45-3 | FS5ms | 240.1 | 39.58 | 153.29 | 0.001 | Leppert2020b | alkane | alkanes | missing |
| 11 | C19 | 629-92-5 | FS5ms | 251.8 | 40.21 | 159.47 | 0.001 | Leppert2020b | alkane | alkanes | missing |
| 12 | C20 | 112-95-8 | FS5ms | 262.81 | 40.67 | 164.99 | 0.001 | Leppert2020b | alkane | alkanes | missing |
| 13 | C21 | 629-94-7 | FS5ms | 273.39 | 41.43 | 179.47 | 0.001 | Leppert2020b | alkane | alkanes | missing |
| 14 | C22 | 629-97-0 | FS5ms | 283.55 | 41.89 | 183.35 | 0.001 | Leppert2020b | alkane | alkanes | missing |
| 15 | C23 | 638-67-5 | FS5ms | 293.11 | 42.25 | 188.99 | 0.001 | Leppert2020b | alkane | alkanes | missing |
| 16 | C24 | 646-31-1 | FS5ms | 302.05 | 42.21 | 188.53 | 0.001 | Leppert2020b | alkane | alkanes | missing |
| 17 | C25 | 629-99-2 | FS5ms | 310.67 | 42.26 | 189.51 | 0.001 | Leppert2020b | alkane | alkanes | missing |
| 18 | C26 | 630-1-3 | FS5ms | 320.42 | 44.16 | 216.77 | 0.001 | Leppert2020b | alkane | missing | missing |
| 19 | C27 | 593-49-7 | FS5ms | 326.62 | 41.9 | 184.17 | 0.001 | Leppert2020b | alkane | alkanes | missing |
| 20 | C28 | 630-2-4 | FS5ms | 334.19 | 41.82 | 183.91 | 0.001 | Leppert2020b | alkane | missing | missing |
| 21 | C29 | 630-3-5 | FS5ms | 341.4 | 41.67 | 183.07 | 0.001 | Leppert2020b | alkane | missing | missing |
| 22 | C30 | 638-68-6 | FS5ms | 348.39 | 41.57 | 183.28 | 0.001 | Leppert2020b | alkane | alkanes | missing |
and extract all the names of the substances with:
solutes = GasChromatographySimulator.all_solutes(col.sp, db_dataframe);22-element Vector{String}:
"C9"
"C10"
"C11"
"C12"
"C13"
"C14"
"C15"
"C16"
"C17"
"C18"
⋮
"C22"
"C23"
"C24"
"C25"
"C26"
"C27"
"C28"
"C29"
"C30"The injection is assumed to be ideal with initial peak widths τ₀ of 0 seconds and occuring at the beginning of the temperature program (t₀ of 0 seconds). The data for all solutes is finally loaded with:
t₀ = zeros(length(solutes))
τ₀ = zeros(length(solutes))
sub = GasChromatographySimulator.load_solute_database(db_dataframe, col.sp, col.gas, solutes, t₀, τ₀)22-element Vector{GasChromatographySimulator.Substance}:
GasChromatographySimulator.Substance("C9", "111-84-2", 371.19, 30.17, 89.34, 0.001, "Leppert2020b, alkane, alkanes", 0.0001253206335721764, 0.0, 0.0)
GasChromatographySimulator.Substance("C10", "124-18-5", 391.24, 32.24, 112.49, 0.001, "Leppert2020b, alkane, Grob, alkanes", 0.00011884991852543487, 0.0, 0.0)
GasChromatographySimulator.Substance("C11", "1120-21-4", 410.21999999999997, 33.71, 116.04, 0.001, "Leppert2020b, alkane, Grob, alkanes", 0.00011323854999018596, 0.0, 0.0)
GasChromatographySimulator.Substance("C12", "112-40-3", 427.92999999999995, 34.92, 121.44, 0.001, "Leppert2020b, alkane, alkanes", 0.00010831148421185742, 0.0, 0.0)
GasChromatographySimulator.Substance("C13", "629-50-5", 444.46999999999997, 35.93, 125.62, 0.001, "Leppert2020b, alkane, alkanes", 0.00010393999972322901, 0.0, 0.0)
GasChromatographySimulator.Substance("C14", "629-59-4", 459.98, 36.76, 126.76, 0.001, "Leppert2020b, alkane, alkanes", 0.00010002700149772162, 0.0, 0.0)
GasChromatographySimulator.Substance("C15", "629-62-9", 474.4, 37.39, 129.62, 0.001, "Leppert2020b, alkane, alkanes", 9.64976601701651e-5, 0.0, 0.0)
GasChromatographySimulator.Substance("C16", "544-76-3", 488.25, 38.46, 142.18, 0.001, "Leppert2020b, alkane, alkanes", 9.329323536538124e-5, 0.0, 0.0)
GasChromatographySimulator.Substance("C17", "629-78-7", 501.05999999999995, 38.95, 145.36, 0.001, "Leppert2020b, alkane, alkanes", 9.036687565381776e-5, 0.0, 0.0)
GasChromatographySimulator.Substance("C18", "593-45-3", 513.25, 39.58, 153.29, 0.001, "Leppert2020b, alkane, alkanes", 8.768068754143736e-5, 0.0, 0.0)
⋮
GasChromatographySimulator.Substance("C22", "629-97-0", 556.7, 41.89, 183.35, 0.001, "Leppert2020b, alkane, alkanes", 7.879073502414208e-5, 0.0, 0.0)
GasChromatographySimulator.Substance("C23", "638-67-5", 566.26, 42.25, 188.99, 0.001, "Leppert2020b, alkane, alkanes", 7.693149436827684e-5, 0.0, 0.0)
GasChromatographySimulator.Substance("C24", "646-31-1", 575.2, 42.21, 188.53, 0.001, "Leppert2020b, alkane, alkanes", 7.518755251713027e-5, 0.0, 0.0)
GasChromatographySimulator.Substance("C25", "629-99-2", 583.8199999999999, 42.26, 189.51, 0.001, "Leppert2020b, alkane, alkanes", 7.354754525382887e-5, 0.0, 0.0)
GasChromatographySimulator.Substance("C26", "630-1-3", 593.5699999999999, 44.16, 216.77, 0.001, "Leppert2020b, alkane", 7.200161658208628e-5, 0.0, 0.0)
GasChromatographySimulator.Substance("C27", "593-49-7", 599.77, 41.9, 184.17, 0.001, "Leppert2020b, alkane, alkanes", 7.054117055654164e-5, 0.0, 0.0)
GasChromatographySimulator.Substance("C28", "630-2-4", 607.3399999999999, 41.82, 183.91, 0.001, "Leppert2020b, alkane", 6.915867131183108e-5, 0.0, 0.0)
GasChromatographySimulator.Substance("C29", "630-3-5", 614.55, 41.67, 183.07, 0.001, "Leppert2020b, alkane", 6.784748059430345e-5, 0.0, 0.0)
GasChromatographySimulator.Substance("C30", "638-68-6", 621.54, 41.57, 183.28, 0.001, "Leppert2020b, alkane, alkanes", 6.660172475097402e-5, 0.0, 0.0)The parameters are combined:
par = GasChromatographySimulator.Parameters(col, prog_D, sub, opt);GasChromatographySimulator.Parameters(GasChromatographySimulator.Column(11.18, 0.000104, [0.000104], 1.04e-7, [1.04e-7], "FS5ms", "H2"), GasChromatographySimulator.Program{GasChromatographySimulator.var"#gf#5"{Matrix{Float64}}}([0.0, 60.0, 1680.0, 60.0, 360.0, 60.0], [40.0, 40.0, 180.0, 180.0, 300.0, 300.0], [411564.0, 411564.0, 411564.0, 411564.0, 411564.0, 411564.0], [101300.0, 101300.0, 101300.0, 101300.0, 101300.0, 101300.0], GasChromatographySimulator.var"#gf#5"{Matrix{Float64}}([0.0 0.0 11.18 0.0; 0.0 0.0 11.18 0.0; … ; 0.0 0.0 11.18 0.0; 0.0 0.0 11.18 0.0]), [0.0 0.0 11.18 0.0; 0.0 0.0 11.18 0.0; … ; 0.0 0.0 11.18 0.0; 0.0 0.0 11.18 0.0], 11181×6 extrapolate(interpolate((0.0:0.001:11.18,::Vector{Float64}), ::Matrix{Float64}, Gridded(Linear())), Flat()) with element type Float64:
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
⋮ ⋮
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15, 6-element extrapolate(interpolate((::Vector{Float64},), ::Vector{Float64}, Gridded(Linear())), Flat()) with element type Float64:
411564.0
411564.0
411564.0
411564.0
411564.0
411564.0, 6-element extrapolate(interpolate((::Vector{Float64},), ::Vector{Float64}, Gridded(Linear())), Flat()) with element type Float64:
101300.0
101300.0
101300.0
101300.0
101300.0
101300.0), GasChromatographySimulator.Substance[GasChromatographySimulator.Substance("C9", "111-84-2", 371.19, 30.17, 89.34, 0.001, "Leppert2020b, alkane, alkanes", 0.0001253206335721764, 0.0, 0.0), GasChromatographySimulator.Substance("C10", "124-18-5", 391.24, 32.24, 112.49, 0.001, "Leppert2020b, alkane, Grob, alkanes", 0.00011884991852543487, 0.0, 0.0), GasChromatographySimulator.Substance("C11", "1120-21-4", 410.21999999999997, 33.71, 116.04, 0.001, "Leppert2020b, alkane, Grob, alkanes", 0.00011323854999018596, 0.0, 0.0), GasChromatographySimulator.Substance("C12", "112-40-3", 427.92999999999995, 34.92, 121.44, 0.001, "Leppert2020b, alkane, alkanes", 0.00010831148421185742, 0.0, 0.0), GasChromatographySimulator.Substance("C13", "629-50-5", 444.46999999999997, 35.93, 125.62, 0.001, "Leppert2020b, alkane, alkanes", 0.00010393999972322901, 0.0, 0.0), GasChromatographySimulator.Substance("C14", "629-59-4", 459.98, 36.76, 126.76, 0.001, "Leppert2020b, alkane, alkanes", 0.00010002700149772162, 0.0, 0.0), GasChromatographySimulator.Substance("C15", "629-62-9", 474.4, 37.39, 129.62, 0.001, "Leppert2020b, alkane, alkanes", 9.64976601701651e-5, 0.0, 0.0), GasChromatographySimulator.Substance("C16", "544-76-3", 488.25, 38.46, 142.18, 0.001, "Leppert2020b, alkane, alkanes", 9.329323536538124e-5, 0.0, 0.0), GasChromatographySimulator.Substance("C17", "629-78-7", 501.05999999999995, 38.95, 145.36, 0.001, "Leppert2020b, alkane, alkanes", 9.036687565381776e-5, 0.0, 0.0), GasChromatographySimulator.Substance("C18", "593-45-3", 513.25, 39.58, 153.29, 0.001, "Leppert2020b, alkane, alkanes", 8.768068754143736e-5, 0.0, 0.0) … GasChromatographySimulator.Substance("C21", "629-94-7", 546.54, 41.43, 179.47, 0.001, "Leppert2020b, alkane, alkanes", 8.077845767414391e-5, 0.0, 0.0), GasChromatographySimulator.Substance("C22", "629-97-0", 556.7, 41.89, 183.35, 0.001, "Leppert2020b, alkane, alkanes", 7.879073502414208e-5, 0.0, 0.0), GasChromatographySimulator.Substance("C23", "638-67-5", 566.26, 42.25, 188.99, 0.001, "Leppert2020b, alkane, alkanes", 7.693149436827684e-5, 0.0, 0.0), GasChromatographySimulator.Substance("C24", "646-31-1", 575.2, 42.21, 188.53, 0.001, "Leppert2020b, alkane, alkanes", 7.518755251713027e-5, 0.0, 0.0), GasChromatographySimulator.Substance("C25", "629-99-2", 583.8199999999999, 42.26, 189.51, 0.001, "Leppert2020b, alkane, alkanes", 7.354754525382887e-5, 0.0, 0.0), GasChromatographySimulator.Substance("C26", "630-1-3", 593.5699999999999, 44.16, 216.77, 0.001, "Leppert2020b, alkane", 7.200161658208628e-5, 0.0, 0.0), GasChromatographySimulator.Substance("C27", "593-49-7", 599.77, 41.9, 184.17, 0.001, "Leppert2020b, alkane, alkanes", 7.054117055654164e-5, 0.0, 0.0), GasChromatographySimulator.Substance("C28", "630-2-4", 607.3399999999999, 41.82, 183.91, 0.001, "Leppert2020b, alkane", 6.915867131183108e-5, 0.0, 0.0), GasChromatographySimulator.Substance("C29", "630-3-5", 614.55, 41.67, 183.07, 0.001, "Leppert2020b, alkane", 6.784748059430345e-5, 0.0, 0.0), GasChromatographySimulator.Substance("C30", "638-68-6", 621.54, 41.57, 183.28, 0.001, "Leppert2020b, alkane, alkanes", 6.660172475097402e-5, 0.0, 0.0)], GasChromatographySimulator.Options(OwrenZen5(), 1.0e-6, 0.001, "inlet", true, true, "Blumberg", "Pressure"))The temperature program and the pressure/flow program can be plotted:
p_flow = GasChromatographySimulator.plot_flow(par)
p_press = GasChromatographySimulator.plot_pressure(par)
p_temp = GasChromatographySimulator.plot_temperature(par)
l = @layout([a{0.65w} [b; c]])
p_TpF = plot(p_temp, p_press, p_flow, layout=l)
The temperatures at the column inlet and outlet are identical, the temperature along the colum is uniform. With the temperature program and the constant pressures, the flow decreases during the temperature program.
Finally, the simulation is executed:
peaklist, sol = GasChromatographySimulator.simulate(par);(22×9 DataFrame
Row │ Name tR τR TR σR uR kR Re ⋯
│ String Float64 Float64 Float64 Float64 Float64 Float64 Fl ⋯
─────┼──────────────────────────────────────────────────────────────────────────
1 │ C9 140.736 0.389365 46.728 0.108043 0.277485 8.15494 6 ⋯
2 │ C10 260.067 0.572035 56.6723 0.111085 0.194193 11.8077 6
3 │ C11 412.8 0.694334 69.4 0.111529 0.160628 14.0838 5
4 │ C12 580.176 0.756106 83.348 0.110697 0.146405 15.0983 5
5 │ C13 747.111 0.786098 97.2593 0.1094 0.139168 15.4922 5 ⋯
6 │ C14 907.119 0.804631 110.593 0.108069 0.134309 15.6749 4
7 │ C15 1061.4 0.815528 123.45 0.106795 0.130952 15.7157 4
8 │ C16 1208.71 0.820451 135.726 0.105629 0.128745 15.6462 4
⋮ │ ⋮ ⋮ ⋮ ⋮ ⋮ ⋮ ⋮ ⋱
16 │ C24 1998.01 0.324749 246.002 0.0994335 0.306186 4.92608 2 ⋯
17 │ C25 2029.76 0.305047 256.588 0.0978042 0.32062 4.57987 2
18 │ C26 2058.46 0.295771 266.153 0.0971876 0.328591 4.3767 2
19 │ C27 2084.51 0.291112 274.838 0.0969698 0.333102 4.24481 2
20 │ C28 2109.06 0.287879 283.02 0.0965487 0.335379 4.15533 2 ⋯
21 │ C29 2132.24 0.286462 290.747 0.0963638 0.336393 4.09026 1
22 │ C30 2154.34 0.285686 298.112 0.0961542 0.336573 4.04139 Na
2 columns and 7 rows omitted, Any[SciMLBase.ODESolution{Float64, 2, Vector{Vector{Float64}}, Nothing, Nothing, Vector{Float64}, Vector{Vector{Vector{Float64}}}, SciMLBase.ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Any}, SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}, SciMLBase.StandardODEProblem}, OwrenZen5, OrdinaryDiffEq.InterpolationData{SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}}, DiffEqBase.DEStats}([[0.0, 0.0], [0.0019745074463568824, 4.7234558495803895e-6], [0.021719125645382444, 5.195583140731696e-5], [0.21911967408608163, 0.0005240612931779568], [2.1885546833476504, 0.005223286530211924], [16.194217778868616, 0.038056727381830455], [47.405695587499196, 0.10724279451009826], [57.80404832541345, 0.12894449073346168], [59.962445415260085, 0.13335703622161135], [60.850575532240924, 0.13431971445984373], [61.233544912009016, 0.13469429698101534], [65.00444359915613, 0.13820539800319437], [74.35116617835061, 0.14558136250641276], [86.29393921942575, 0.15246190536650484], [99.75978106850997, 0.15710970960081136], [114.50801468563853, 0.15869777593940151], [129.04601743142106, 0.15665670389241473], [140.48518839859463, 0.15176841109892455], [140.73550490371096, 0.15160473875643016]], nothing, nothing, [0.0, 9.999999999999999e-5, 0.0010999999999999998, 0.011099999999999997, 0.11109999999999996, 0.8349849907189201, 2.541874627159661, 3.1455701087661643, 3.2734840163835144, 3.3264776407435916, 3.349435682787362, 3.579016103225064, 4.177527739163219, 5.012166343675181, 6.070397238317557, 7.427825774489995, 9.11156488984434, 11.11214399520834, 11.18], [[[0.0, 0.0]], [[19.745115941524645, 0.04723475694471891], [19.745102115553884, 0.047234690795080525], [19.745095202564936, 0.047234657720261655], [19.745074463583382, 0.04723455849580407], [19.745074463583382, 0.04723455849580407], [19.74506261272693, 0.04723450179611366], [19.74504335507013, 0.0472344096591173], [19.745032985554843, 0.047234360046888496]], [[19.745032985554843, 0.047234360046888496], [19.74489472483068, 0.04723369855050451], [19.744825594105528, 0.04723336780231249], [19.74461820047784, 0.047232375557736475], [19.74461820047784, 0.047232375557736475], [19.74449968885537, 0.047231808560835885], [19.744307105951773, 0.04723088719087282], [19.744203406687117, 0.04723039106858477]], [[19.744203406687117, 0.04723039106858477], [19.742820697777837, 0.04722377610474431], [19.74212930700712, 0.04722046862282398], [19.740054989400356, 0.04721054617706406], [19.740054989400356, 0.04721054617706405], [19.73886956718242, 0.0472048762080582], [19.73694310422685, 0.04719566250842373], [19.735905700131045, 0.047190701285543375]], [[19.735905700131045, 0.047190701285543375], [19.722068431181143, 0.04712455164714235], [19.715146154772828, 0.04709147682794167], [19.694364727089848, 0.04699225237033972], [19.69436472708984, 0.046992252370339695], [19.682479774168378, 0.046935552680281434], [19.663151404416862, 0.04684341568393676], [19.652735947007837, 0.04679380345513576]], [[19.652735947007837, 0.04679380345513576], [19.55192282607215, 0.04631495615133354], [19.501320832026167, 0.04607553249943281], [19.348720841038094, 0.0453572615437299], [19.348720841038087, 0.04535726154372988], [19.260978032036572, 0.04494682099761392], [19.117537084327246, 0.044279855110175466], [19.03985205210454, 0.043920719632324016]], [[19.03985205210454, 0.043920719632324016], [18.793523064981343, 0.04279161830990894], [18.669139795608256, 0.042227067648701405], [18.29091564820904, 0.040533415665078815], [18.29091564820904, 0.040533415665078815], [18.071233750739342, 0.03956561453158017], [17.7084391481237, 0.037992937689644915], [17.509974995235346, 0.0371461116978336]], [[17.509974995235346, 0.0371461116978336], [17.41559943699634, 0.0367467693197058], [17.36821935196518, 0.036547098130641956], [17.225297169633624, 0.03594808456345027], [17.225297169633624, 0.03594808456345027], [17.143092380531915, 0.03560579109648362], [17.008662242178367, 0.035049564212662775], [16.935834813513306, 0.034750057429066936]], [[16.935834813513306, 0.034750057429066936], [16.91520330704226, 0.034665442841713065], [16.904878111437405, 0.03462313554803613], [16.873864616456473, 0.03449621366700533], [16.873864616456473, 0.03449621366700533], [16.85611699985369, 0.034423686877844854], [16.827237200218605, 0.03430583084545911], [16.811665989972383, 0.034242369904943726]], [[16.811665989972383, 0.034242369904943726], [16.795837557561164, 0.01677888979403646], [16.786714942440543, 0.01675351145953154], [16.75937009070615, 0.016617663137844563], [16.759361737376842, 0.016737641698130034], [16.743766933021742, 0.01655093423317187], [16.718444909615602, 0.01648238517441698], [16.704830639455906, 0.016412404738346074]], [[16.704830639455906, 0.016412404738346074], [16.696970918000066, 0.016380163828876446], [16.693044115116205, 0.016364080446767734], [16.681267179299702, 0.016315879240461552], [16.6812671857911, 0.01631587940798628], [16.67454180118038, 0.016288390857165977], [16.663619720011855, 0.01624380758715534], [16.657742007917307, 0.016219844854995443]], [[16.657742007917307, 0.016219844854995443], [16.57950345325853, 0.01590216494092454], [16.54068556249053, 0.015746944846907803], [16.424562792098246, 0.015285855210730982], [16.42456916019306, 0.015286018782482584], [16.358620748853124, 0.015027584886450136], [16.252096509436438, 0.014615781454333145], [16.195055495640155, 0.014397967499833794]], [[16.195055495640155, 0.014397967499833794], [15.997881372369884, 0.01365545203707235], [15.901177579723402, 0.01330552861195389], [15.612977983489799, 0.012280994622992925], [15.613078670154975, 0.01228342392477292], [15.450756720609004, 0.011724709268619446], [15.190810181047112, 0.010863330641484273], [15.052629710936415, 0.010419714655108419]], [[15.052629710936415, 0.010419714655108419], [14.79793983872663, 0.00962255635191946], [14.673620675052142, 0.00925406539409667], [14.30340398172931, 0.008184305798704009], [14.30361568362779, 0.008188622372108358], [14.095604016281111, 0.0076135737975109655], [13.763393613345674, 0.006744286912219552], [13.587120658396994, 0.006303124449359316]], [[13.587120658396994, 0.006303124449359316], [13.291804088138015, 0.0055897011866883565], [13.147881850877853, 0.005264721731819747], [12.718741871989028, 0.004329201097530062], [12.719051401353832, 0.004334162305369569], [12.477710391872506, 0.003837581573238647], [12.091925355090881, 0.0030995094624011402], [11.886894972391774, 0.002729820502143449]], [[11.886894972391774, 0.002729820502143449], [11.538586157983538, 0.0021322755354804424], [11.368698009302923, 0.0018649997641725195], [10.85986334157048, 0.0011061230960404938], [10.860302980908328, 0.0011111872964083037], [10.572593253379512, 0.0007161237008657152], [10.109943969934195, 0.0001435095261315307], [9.862321908518526, -0.0001371398887918939]], [[9.862321908518526, -0.0001371398887918939], [9.452299893453551, -0.000566719267834576], [9.250571147540853, -0.0007547888371354072], [8.638315677174786, -0.0012730206313508203], [8.638846122180578, -0.0012694455914351102], [8.28625527460347, -0.0015278149416650625], [7.707022001909615, -0.0018822631094775888], [7.38951017662296, -0.0020446783921965047]], [[7.38951017662296, -0.0020446783921965047], [6.872965052996178, -0.002263462294670375], [6.611047261624376, -0.0023503696975950743], [5.780118045924209, -0.002539180765959005], [5.780746867753759, -0.0025384338516442214], [5.26872079641903, -0.002587103467638894], [4.345437527122609, -0.0025442484301804965], [3.772907250190737, -0.002433937532671877]], [[3.772907250190737, -0.002433937532671877], [3.7451994504565995, -0.002426948905293309], [3.731279301251635, -0.002423382440953272], [3.6892286693708596, -0.002412369462323459], [3.6892286805108405, -0.0024123694899648006], [3.665004147653412, -0.0024058648928768278], [3.625326706979611, -0.002394957698358521], [3.6037976813749593, -0.0023889076370050564]]], SciMLBase.ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Any}, SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}, SciMLBase.StandardODEProblem}(SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}(GasChromatographySimulator.odesystem_r!, LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, SciMLBase.DEFAULT_OBSERVED, nothing), [0.0, 0.0], (0.0, 11.18), Any[GasChromatographySimulator.Column(11.18, 0.000104, [0.000104], 1.04e-7, [1.04e-7], "FS5ms", "H2"), GasChromatographySimulator.Program{GasChromatographySimulator.var"#gf#5"{Matrix{Float64}}}([0.0, 60.0, 1680.0, 60.0, 360.0, 60.0], [40.0, 40.0, 180.0, 180.0, 300.0, 300.0], [411564.0, 411564.0, 411564.0, 411564.0, 411564.0, 411564.0], [101300.0, 101300.0, 101300.0, 101300.0, 101300.0, 101300.0], GasChromatographySimulator.var"#gf#5"{Matrix{Float64}}([0.0 0.0 11.18 0.0; 0.0 0.0 11.18 0.0; … ; 0.0 0.0 11.18 0.0; 0.0 0.0 11.18 0.0]), [0.0 0.0 11.18 0.0; 0.0 0.0 11.18 0.0; … ; 0.0 0.0 11.18 0.0; 0.0 0.0 11.18 0.0], 11181×6 extrapolate(interpolate((0.0:0.001:11.18,::Vector{Float64}), ::Matrix{Float64}, Gridded(Linear())), Flat()) with element type Float64:
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
⋮ ⋮
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15, 6-element extrapolate(interpolate((::Vector{Float64},), ::Vector{Float64}, Gridded(Linear())), Flat()) with element type Float64:
411564.0
411564.0
411564.0
411564.0
411564.0
411564.0, 6-element extrapolate(interpolate((::Vector{Float64},), ::Vector{Float64}, Gridded(Linear())), Flat()) with element type Float64:
101300.0
101300.0
101300.0
101300.0
101300.0
101300.0), GasChromatographySimulator.Substance("C9", "111-84-2", 371.19, 30.17, 89.34, 0.001, "Leppert2020b, alkane, alkanes", 0.0001253206335721764, 0.0, 0.0), GasChromatographySimulator.Options(OwrenZen5(), 1.0e-6, 0.001, "inlet", true, true, "Blumberg", "Pressure")], Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}(), SciMLBase.StandardODEProblem()), OwrenZen5(), OrdinaryDiffEq.InterpolationData{SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}}(SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}(GasChromatographySimulator.odesystem_r!, LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, SciMLBase.DEFAULT_OBSERVED, nothing), [[0.0, 0.0], [0.0019745074463568824, 4.7234558495803895e-6], [0.021719125645382444, 5.195583140731696e-5], [0.21911967408608163, 0.0005240612931779568], [2.1885546833476504, 0.005223286530211924], [16.194217778868616, 0.038056727381830455], [47.405695587499196, 0.10724279451009826], [57.80404832541345, 0.12894449073346168], [59.962445415260085, 0.13335703622161135], [60.850575532240924, 0.13431971445984373], [61.233544912009016, 0.13469429698101534], [65.00444359915613, 0.13820539800319437], [74.35116617835061, 0.14558136250641276], [86.29393921942575, 0.15246190536650484], [99.75978106850997, 0.15710970960081136], [114.50801468563853, 0.15869777593940151], [129.04601743142106, 0.15665670389241473], [140.48518839859463, 0.15176841109892455], [140.73550490371096, 0.15160473875643016]], [0.0, 9.999999999999999e-5, 0.0010999999999999998, 0.011099999999999997, 0.11109999999999996, 0.8349849907189201, 2.541874627159661, 3.1455701087661643, 3.2734840163835144, 3.3264776407435916, 3.349435682787362, 3.579016103225064, 4.177527739163219, 5.012166343675181, 6.070397238317557, 7.427825774489995, 9.11156488984434, 11.11214399520834, 11.18], [[[0.0, 0.0]], [[19.745115941524645, 0.04723475694471891], [19.745102115553884, 0.047234690795080525], [19.745095202564936, 0.047234657720261655], [19.745074463583382, 0.04723455849580407], [19.745074463583382, 0.04723455849580407], [19.74506261272693, 0.04723450179611366], [19.74504335507013, 0.0472344096591173], [19.745032985554843, 0.047234360046888496]], [[19.745032985554843, 0.047234360046888496], [19.74489472483068, 0.04723369855050451], [19.744825594105528, 0.04723336780231249], [19.74461820047784, 0.047232375557736475], [19.74461820047784, 0.047232375557736475], [19.74449968885537, 0.047231808560835885], [19.744307105951773, 0.04723088719087282], [19.744203406687117, 0.04723039106858477]], [[19.744203406687117, 0.04723039106858477], [19.742820697777837, 0.04722377610474431], [19.74212930700712, 0.04722046862282398], [19.740054989400356, 0.04721054617706406], [19.740054989400356, 0.04721054617706405], [19.73886956718242, 0.0472048762080582], [19.73694310422685, 0.04719566250842373], [19.735905700131045, 0.047190701285543375]], [[19.735905700131045, 0.047190701285543375], [19.722068431181143, 0.04712455164714235], [19.715146154772828, 0.04709147682794167], [19.694364727089848, 0.04699225237033972], [19.69436472708984, 0.046992252370339695], [19.682479774168378, 0.046935552680281434], [19.663151404416862, 0.04684341568393676], [19.652735947007837, 0.04679380345513576]], [[19.652735947007837, 0.04679380345513576], [19.55192282607215, 0.04631495615133354], [19.501320832026167, 0.04607553249943281], [19.348720841038094, 0.0453572615437299], [19.348720841038087, 0.04535726154372988], [19.260978032036572, 0.04494682099761392], [19.117537084327246, 0.044279855110175466], [19.03985205210454, 0.043920719632324016]], [[19.03985205210454, 0.043920719632324016], [18.793523064981343, 0.04279161830990894], [18.669139795608256, 0.042227067648701405], [18.29091564820904, 0.040533415665078815], [18.29091564820904, 0.040533415665078815], [18.071233750739342, 0.03956561453158017], [17.7084391481237, 0.037992937689644915], [17.509974995235346, 0.0371461116978336]], [[17.509974995235346, 0.0371461116978336], [17.41559943699634, 0.0367467693197058], [17.36821935196518, 0.036547098130641956], [17.225297169633624, 0.03594808456345027], [17.225297169633624, 0.03594808456345027], [17.143092380531915, 0.03560579109648362], [17.008662242178367, 0.035049564212662775], [16.935834813513306, 0.034750057429066936]], [[16.935834813513306, 0.034750057429066936], [16.91520330704226, 0.034665442841713065], [16.904878111437405, 0.03462313554803613], [16.873864616456473, 0.03449621366700533], [16.873864616456473, 0.03449621366700533], [16.85611699985369, 0.034423686877844854], [16.827237200218605, 0.03430583084545911], [16.811665989972383, 0.034242369904943726]], [[16.811665989972383, 0.034242369904943726], [16.795837557561164, 0.01677888979403646], [16.786714942440543, 0.01675351145953154], [16.75937009070615, 0.016617663137844563], [16.759361737376842, 0.016737641698130034], [16.743766933021742, 0.01655093423317187], [16.718444909615602, 0.01648238517441698], [16.704830639455906, 0.016412404738346074]], [[16.704830639455906, 0.016412404738346074], [16.696970918000066, 0.016380163828876446], [16.693044115116205, 0.016364080446767734], [16.681267179299702, 0.016315879240461552], [16.6812671857911, 0.01631587940798628], [16.67454180118038, 0.016288390857165977], [16.663619720011855, 0.01624380758715534], [16.657742007917307, 0.016219844854995443]], [[16.657742007917307, 0.016219844854995443], [16.57950345325853, 0.01590216494092454], [16.54068556249053, 0.015746944846907803], [16.424562792098246, 0.015285855210730982], [16.42456916019306, 0.015286018782482584], [16.358620748853124, 0.015027584886450136], [16.252096509436438, 0.014615781454333145], [16.195055495640155, 0.014397967499833794]], [[16.195055495640155, 0.014397967499833794], [15.997881372369884, 0.01365545203707235], [15.901177579723402, 0.01330552861195389], [15.612977983489799, 0.012280994622992925], [15.613078670154975, 0.01228342392477292], [15.450756720609004, 0.011724709268619446], [15.190810181047112, 0.010863330641484273], [15.052629710936415, 0.010419714655108419]], [[15.052629710936415, 0.010419714655108419], [14.79793983872663, 0.00962255635191946], [14.673620675052142, 0.00925406539409667], [14.30340398172931, 0.008184305798704009], [14.30361568362779, 0.008188622372108358], [14.095604016281111, 0.0076135737975109655], [13.763393613345674, 0.006744286912219552], [13.587120658396994, 0.006303124449359316]], [[13.587120658396994, 0.006303124449359316], [13.291804088138015, 0.0055897011866883565], [13.147881850877853, 0.005264721731819747], [12.718741871989028, 0.004329201097530062], [12.719051401353832, 0.004334162305369569], [12.477710391872506, 0.003837581573238647], [12.091925355090881, 0.0030995094624011402], [11.886894972391774, 0.002729820502143449]], [[11.886894972391774, 0.002729820502143449], [11.538586157983538, 0.0021322755354804424], [11.368698009302923, 0.0018649997641725195], [10.85986334157048, 0.0011061230960404938], [10.860302980908328, 0.0011111872964083037], [10.572593253379512, 0.0007161237008657152], [10.109943969934195, 0.0001435095261315307], [9.862321908518526, -0.0001371398887918939]], [[9.862321908518526, -0.0001371398887918939], [9.452299893453551, -0.000566719267834576], [9.250571147540853, -0.0007547888371354072], [8.638315677174786, -0.0012730206313508203], [8.638846122180578, -0.0012694455914351102], [8.28625527460347, -0.0015278149416650625], [7.707022001909615, -0.0018822631094775888], [7.38951017662296, -0.0020446783921965047]], [[7.38951017662296, -0.0020446783921965047], [6.872965052996178, -0.002263462294670375], [6.611047261624376, -0.0023503696975950743], [5.780118045924209, -0.002539180765959005], [5.780746867753759, -0.0025384338516442214], [5.26872079641903, -0.002587103467638894], [4.345437527122609, -0.0025442484301804965], [3.772907250190737, -0.002433937532671877]], [[3.772907250190737, -0.002433937532671877], [3.7451994504565995, -0.002426948905293309], [3.731279301251635, -0.002423382440953272], [3.6892286693708596, -0.002412369462323459], [3.6892286805108405, -0.0024123694899648006], [3.665004147653412, -0.0024058648928768278], [3.625326706979611, -0.002394957698358521], [3.6037976813749593, -0.0023889076370050564]]], true, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}([140.73550490371096, 0.15160473875643016], [140.48518839859463, 0.15176841109892455], [3.772907250190737, -0.002433937532671877], [3.7451994504565995, -0.002426948905293309], [3.731279301251635, -0.002423382440953272], [3.6892286693708596, -0.002412369462323459], [3.6892286805108405, -0.0024123694899648006], [3.665004147653412, -0.0024058648928768278], [3.625326706979611, -0.002394957698358521], [3.6037976813749593, -0.0023889076370050564], [8.703481395865448e-9, -9.087029634304437e-12], [140.70484605361966, 0.15162502726823027], [6.184238696150792e-8, -5.9482386240308336e-8], OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}(0.16666666666666666, 0.0625, 0.1875, 0.25, -0.75, -0.75, 3.75, -3.0, 0.5, 0.26895043731778423, -0.7084548104956269, 0.8658892128279884, 0.15462307371928363, 0.06184922948771345, -0.02947695035460993, 0.18500664893617022, 0.4802345261121857, -0.5337849069148937, -0.013090093085106383, 0.7861107753062541, 0.08783068783068783, 0.3006060606060606, 0.22777777777777777, 0.027777777777777776, 0.06218596218596219, 0.2938217338217338, 0.16666666666666666, 0.25, 0.5, 0.5, 0.6428571428571429, 0.875, -0.19894179894179895, 0.9115151515151515, -1.9777777777777779, -0.1111111111111111, 1.67013727013727, -0.2938217338217338, 1.892063492063492, -6.067155067155067, 7.282458282458283, -4.0195360195360195, -7.214545454545455, 20.676923076923078, -20.31142191142191, 7.14965034965035, 7.866666666666666, -18.78205128205128, 13.508547008547009, -2.3653846153846154, 2.0, -5.294871794871795, 4.534188034188034, -1.2115384615384615, -1.4924630924630924, 1.5785667324128863, 1.1958838881915805, -1.219801565955412, -7.051721611721612, 16.273203719357564, -11.978886071193763, 3.0512256973795435, 4.0, -8.384615384615385, 5.769230769230769, -1.3846153846153846))), true, 0, DiffEqBase.DEStats
Number of function 1 evaluations: 255
Number of function 2 evaluations: 0
Number of W matrix evaluations: 0
Number of linear solves: 0
Number of Jacobians created: 0
Number of nonlinear solver iterations: 0
Number of nonlinear solver convergence failures: 0
Number of rootfind condition calls: 0
Number of accepted steps: 18
Number of rejected steps: 18, :Success), SciMLBase.ODESolution{Float64, 2, Vector{Vector{Float64}}, Nothing, Nothing, Vector{Float64}, Vector{Vector{Vector{Float64}}}, SciMLBase.ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Any}, SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}, SciMLBase.StandardODEProblem}, OwrenZen5, OrdinaryDiffEq.InterpolationData{SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}}, DiffEqBase.DEStats}([[0.0, 0.0], [0.004822669065209952, 3.087876177685592e-5], [0.05304824530626859, 0.0003396521089717704], [0.535192549282912, 0.0034259585235565933], [5.34547235482715, 0.03414631693297235], [39.54141241372222, 0.24871242625193676], [54.9414428371616, 0.34307712507497223], [59.04268779050093, 0.36796228591367053], [60.122582256358626, 0.37449735814202056], [70.59431013333138, 0.39875029162611697], [83.31354096508814, 0.4207739970108184], [98.52258152048765, 0.4381113231268197], [115.85341588715168, 0.4481514397231827], [135.19961279446267, 0.4497337533766557], [156.21510313605512, 0.4426454302336088], [178.64110302788632, 0.42749772913305606], [201.97173126255097, 0.4055020026523152], [225.43338165050096, 0.3782578421365638], [247.30930403827728, 0.34819911642017964], [260.06723655405875, 0.32722433280414565]], nothing, nothing, [0.0, 9.999999999999999e-5, 0.0010999999999999998, 0.011099999999999997, 0.11109999999999996, 0.8347177402027082, 1.16839532552501, 1.2581333610542251, 1.2818251163532415, 1.5187426693434056, 1.8260865780252582, 2.224307194767151, 2.72345009777049, 3.345767731265788, 4.113424130277604, 5.0618766750576425, 6.234035871945446, 7.691391969078953, 9.511938287303153, 11.18], [[[0.0, 0.0]], [[48.226791960633314, 0.3087889150934343], [48.22675819115749, 0.3087884826518089], [48.226741306410695, 0.30878826643099594], [48.22669065213519, 0.3087876177685619], [48.22669065213519, 0.3087876177685619], [48.22666170681052, 0.3087872471043072], [48.226614670621515, 0.30878664477490203], [48.226589343423605, 0.30878632044368093]], [[48.226589343423605, 0.30878632044368093], [48.226251646182405, 0.30878199602742545], [48.22608279667502, 0.30877983381929763], [48.22557624460584, 0.30877334719491456], [48.22557624460584, 0.30877334719491456], [48.225286783891804, 0.30876964055241135], [48.22481640652551, 0.3087636172583394], [48.224563124504925, 0.30876037394614775]], [[48.224563124504925, 0.30876037394614775], [48.221185903773126, 0.3087171297835905], [48.219497204706656, 0.30869550770231496], [48.214430752629085, 0.30863064145848207], [48.214430752629085, 0.30863064145848207], [48.21153539810891, 0.3085935750334325], [48.20683007612205, 0.3085333420927344], [48.204296250964525, 0.30850090897081395]], [[48.204296250964525, 0.30850090897081395], [48.170499179682395, 0.3080684673452634], [48.15359174873966, 0.307852246532487], [48.102833799660836, 0.30720358409415577], [48.102833799660985, 0.3072035840941577], [48.07380519564049, 0.30683291984368405], [48.02659629245133, 0.3062305904366658], [48.00115688256739, 0.3059062592174995]], [[48.00115688256739, 0.3059062592174995], [47.75501531316324, 0.3027770348989785], [47.631467543088156, 0.30121242273971804], [47.258886344810044, 0.29651858626193667], [47.258886344810044, 0.29651858626193667], [47.04465799768703, 0.29383639398891875], [46.69444073888018, 0.2894778315452645], [46.504769809542125, 0.28713091330637386]], [[46.504769809542125, 0.28713091330637386], [46.38776903460871, 0.28568795253230084], [46.32915784355521, 0.28496647214526427], [46.15287767786108, 0.2828020309841547], [46.15287767786108, 0.2828020309841547], [46.05184319477261, 0.28156520746352076], [45.8871877012466, 0.27955536924249036], [45.79828185485472, 0.27847314866193557]], [[45.79828185485472, 0.27847314866193557], [45.766359766519024, 0.278085084042354], [45.75039036980252, 0.277891051732563], [45.70244869940695, 0.27730895480319057], [45.70244869940695, 0.27730895480319057], [45.67503086617753, 0.27697632798640637], [45.63044175022669, 0.27643580940913187], [45.606414169359255, 0.27614476094444557]], [[45.606414169359255, 0.27614476094444557], [45.59795312171832, 0.27604230793270856], [45.59372200908877, 0.27599108142684], [45.58102631465199, 0.27583740190923445], [45.58102631465199, 0.27583740190923445], [45.57377004421155, 0.2757495850420313], [45.56197613997221, 0.2756068826328261], [45.530015088164426, 0.11877593474059447]], [[45.530015088164426, 0.11877593474059447], [45.072369400809784, 0.11285665090456856], [44.849556791784835, 0.11009654310883629], [44.187810373214035, 0.10199966710272054], [44.18822492078715, 0.10203246312237316], [43.81785311430543, 0.09762430515906531], [43.228910833575526, 0.09087976577749818], [42.917783421935155, 0.08741763834854305]], [[42.917783421935155, 0.08741763834854305], [42.38673907438439, 0.0816270597512248], [42.12965019724548, 0.07897170720804364], [41.367630759825936, 0.07122209853164257], [41.36833374478905, 0.07126981209587518], [40.94354650265526, 0.06709152015336184], [40.27126103016033, 0.0608061780101615], [39.91743237924775, 0.05761495172159847]], [[39.91743237924775, 0.05761495172159847], [39.315827129247616, 0.052329154487093826], [39.02638132377312, 0.04995285644223815], [38.1702839269217, 0.043061025239525874], [38.171408325371246, 0.04312397733330159], [37.696186039700414, 0.03944856610098649], [36.94799476465078, 0.03403803884951845], [36.55577169093644, 0.03132675331639623]], [[36.55577169093644, 0.03132675331639623], [35.91224934205083, 0.027025349874293142], [35.60421157565673, 0.02512866440336975], [34.69467180749164, 0.01966623504162482], [34.696204535535905, 0.01973362209099], [34.19298026320684, 0.016852343496734035], [33.40408151668095, 0.01270759613338815], [32.991791722714325, 0.010658990398083185]], [[32.991791722714325, 0.010658990398083185], [32.32035257719971, 0.007463945263192662], [32.00043881324034, 0.006086350894188311], [31.05720223751847, 0.002156778328793796], [31.05914998740604, 0.0022205135098835316], [30.53874175294163, 0.00017633438946643154], [29.725990028270406, -0.0026787632097229758], [29.302322562766737, -0.004064716551576003]], [[29.302322562766737, -0.004064716551576003], [28.62079186713181, -0.006168918267411214], [28.2971930586516, -0.007051644050249425], [27.343940089568274, -0.009531921492493503], [27.34621015005478, -0.00948040920927136], [26.821209788458493, -0.010744043104077436], [26.003370009270828, -0.012437172274957595], [25.577681810515216, -0.013236223846670878]], [[25.577681810515216, -0.013236223846670878], [24.892421670208613, -0.014417801094699742], [24.56782616646399, -0.014891620070602421], [23.611765589519063, -0.016180865150781223], [23.614288812492592, -0.016145063663307938], [23.088038293726058, -0.01677289613986996], [22.26910853056632, -0.01754380621777938], [21.84288999583587, -0.017882720795927752]], [[21.84288999583587, -0.017882720795927752], [21.156334884835108, -0.018345784547307127], [20.831223339968243, -0.01850856332313737], [19.872209121835542, -0.0188964400858367], [19.874865075347426, -0.018877223021188383], [19.345970948097666, -0.01902743703105738], [18.521205386210394, -0.01912350666034328], [18.09072486316453, -0.019129149103698513]], [[18.09072486316453, -0.019129149103698513], [17.390978510249635, -0.019075182885257003], [17.058466927260504, -0.01901809678265811], [16.072433799440944, -0.018767700532820918], [16.075115278142746, -0.01876309923257709], [15.527228561787394, -0.018574044788813127], [14.665108042839753, -0.018194870918124387], [14.210679415729235, -0.017963681790730327]], [[14.210679415729235, -0.017963681790730327], [13.460841740951489, -0.017532723861679762], [13.09980656457531, -0.0173131021217776], [12.011115841314401, -0.016569247340887317], [12.013693928484853, -0.01657622164205451], [11.393645318481195, -0.016105990617878457], [10.38729099434146, -0.01528994383890542], [9.838307102538602, -0.014812116064381691]], [[9.838307102538602, -0.014812116064381691], [9.152261136680975, -0.014176317599052534], [8.807097762669601, -0.013851682431558028], [7.71879334138072, -0.012738941760064543], [7.719872367962244, -0.012745803726334787], [7.055585664601815, -0.012005598917505807], [5.872324282735631, -0.010575151658251337], [5.149509411143692, -0.009610802858193738]]], SciMLBase.ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Any}, SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}, SciMLBase.StandardODEProblem}(SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}(GasChromatographySimulator.odesystem_r!, LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, SciMLBase.DEFAULT_OBSERVED, nothing), [0.0, 0.0], (0.0, 11.18), Any[GasChromatographySimulator.Column(11.18, 0.000104, [0.000104], 1.04e-7, [1.04e-7], "FS5ms", "H2"), GasChromatographySimulator.Program{GasChromatographySimulator.var"#gf#5"{Matrix{Float64}}}([0.0, 60.0, 1680.0, 60.0, 360.0, 60.0], [40.0, 40.0, 180.0, 180.0, 300.0, 300.0], [411564.0, 411564.0, 411564.0, 411564.0, 411564.0, 411564.0], [101300.0, 101300.0, 101300.0, 101300.0, 101300.0, 101300.0], GasChromatographySimulator.var"#gf#5"{Matrix{Float64}}([0.0 0.0 11.18 0.0; 0.0 0.0 11.18 0.0; … ; 0.0 0.0 11.18 0.0; 0.0 0.0 11.18 0.0]), [0.0 0.0 11.18 0.0; 0.0 0.0 11.18 0.0; … ; 0.0 0.0 11.18 0.0; 0.0 0.0 11.18 0.0], 11181×6 extrapolate(interpolate((0.0:0.001:11.18,::Vector{Float64}), ::Matrix{Float64}, Gridded(Linear())), Flat()) with element type Float64:
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
⋮ ⋮
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15, 6-element extrapolate(interpolate((::Vector{Float64},), ::Vector{Float64}, Gridded(Linear())), Flat()) with element type Float64:
411564.0
411564.0
411564.0
411564.0
411564.0
411564.0, 6-element extrapolate(interpolate((::Vector{Float64},), ::Vector{Float64}, Gridded(Linear())), Flat()) with element type Float64:
101300.0
101300.0
101300.0
101300.0
101300.0
101300.0), GasChromatographySimulator.Substance("C10", "124-18-5", 391.24, 32.24, 112.49, 0.001, "Leppert2020b, alkane, Grob, alkanes", 0.00011884991852543487, 0.0, 0.0), GasChromatographySimulator.Options(OwrenZen5(), 1.0e-6, 0.001, "inlet", true, true, "Blumberg", "Pressure")], Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}(), SciMLBase.StandardODEProblem()), OwrenZen5(), OrdinaryDiffEq.InterpolationData{SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}}(SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}(GasChromatographySimulator.odesystem_r!, LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, SciMLBase.DEFAULT_OBSERVED, nothing), [[0.0, 0.0], [0.004822669065209952, 3.087876177685592e-5], [0.05304824530626859, 0.0003396521089717704], [0.535192549282912, 0.0034259585235565933], [5.34547235482715, 0.03414631693297235], [39.54141241372222, 0.24871242625193676], [54.9414428371616, 0.34307712507497223], [59.04268779050093, 0.36796228591367053], [60.122582256358626, 0.37449735814202056], [70.59431013333138, 0.39875029162611697], [83.31354096508814, 0.4207739970108184], [98.52258152048765, 0.4381113231268197], [115.85341588715168, 0.4481514397231827], [135.19961279446267, 0.4497337533766557], [156.21510313605512, 0.4426454302336088], [178.64110302788632, 0.42749772913305606], [201.97173126255097, 0.4055020026523152], [225.43338165050096, 0.3782578421365638], [247.30930403827728, 0.34819911642017964], [260.06723655405875, 0.32722433280414565]], [0.0, 9.999999999999999e-5, 0.0010999999999999998, 0.011099999999999997, 0.11109999999999996, 0.8347177402027082, 1.16839532552501, 1.2581333610542251, 1.2818251163532415, 1.5187426693434056, 1.8260865780252582, 2.224307194767151, 2.72345009777049, 3.345767731265788, 4.113424130277604, 5.0618766750576425, 6.234035871945446, 7.691391969078953, 9.511938287303153, 11.18], [[[0.0, 0.0]], [[48.226791960633314, 0.3087889150934343], [48.22675819115749, 0.3087884826518089], [48.226741306410695, 0.30878826643099594], [48.22669065213519, 0.3087876177685619], [48.22669065213519, 0.3087876177685619], [48.22666170681052, 0.3087872471043072], [48.226614670621515, 0.30878664477490203], [48.226589343423605, 0.30878632044368093]], [[48.226589343423605, 0.30878632044368093], [48.226251646182405, 0.30878199602742545], [48.22608279667502, 0.30877983381929763], [48.22557624460584, 0.30877334719491456], [48.22557624460584, 0.30877334719491456], [48.225286783891804, 0.30876964055241135], [48.22481640652551, 0.3087636172583394], [48.224563124504925, 0.30876037394614775]], [[48.224563124504925, 0.30876037394614775], [48.221185903773126, 0.3087171297835905], [48.219497204706656, 0.30869550770231496], [48.214430752629085, 0.30863064145848207], [48.214430752629085, 0.30863064145848207], [48.21153539810891, 0.3085935750334325], [48.20683007612205, 0.3085333420927344], [48.204296250964525, 0.30850090897081395]], [[48.204296250964525, 0.30850090897081395], [48.170499179682395, 0.3080684673452634], [48.15359174873966, 0.307852246532487], [48.102833799660836, 0.30720358409415577], [48.102833799660985, 0.3072035840941577], [48.07380519564049, 0.30683291984368405], [48.02659629245133, 0.3062305904366658], [48.00115688256739, 0.3059062592174995]], [[48.00115688256739, 0.3059062592174995], [47.75501531316324, 0.3027770348989785], [47.631467543088156, 0.30121242273971804], [47.258886344810044, 0.29651858626193667], [47.258886344810044, 0.29651858626193667], [47.04465799768703, 0.29383639398891875], [46.69444073888018, 0.2894778315452645], [46.504769809542125, 0.28713091330637386]], [[46.504769809542125, 0.28713091330637386], [46.38776903460871, 0.28568795253230084], [46.32915784355521, 0.28496647214526427], [46.15287767786108, 0.2828020309841547], [46.15287767786108, 0.2828020309841547], [46.05184319477261, 0.28156520746352076], [45.8871877012466, 0.27955536924249036], [45.79828185485472, 0.27847314866193557]], [[45.79828185485472, 0.27847314866193557], [45.766359766519024, 0.278085084042354], [45.75039036980252, 0.277891051732563], [45.70244869940695, 0.27730895480319057], [45.70244869940695, 0.27730895480319057], [45.67503086617753, 0.27697632798640637], [45.63044175022669, 0.27643580940913187], [45.606414169359255, 0.27614476094444557]], [[45.606414169359255, 0.27614476094444557], [45.59795312171832, 0.27604230793270856], [45.59372200908877, 0.27599108142684], [45.58102631465199, 0.27583740190923445], [45.58102631465199, 0.27583740190923445], [45.57377004421155, 0.2757495850420313], [45.56197613997221, 0.2756068826328261], [45.530015088164426, 0.11877593474059447]], [[45.530015088164426, 0.11877593474059447], [45.072369400809784, 0.11285665090456856], [44.849556791784835, 0.11009654310883629], [44.187810373214035, 0.10199966710272054], [44.18822492078715, 0.10203246312237316], [43.81785311430543, 0.09762430515906531], [43.228910833575526, 0.09087976577749818], [42.917783421935155, 0.08741763834854305]], [[42.917783421935155, 0.08741763834854305], [42.38673907438439, 0.0816270597512248], [42.12965019724548, 0.07897170720804364], [41.367630759825936, 0.07122209853164257], [41.36833374478905, 0.07126981209587518], [40.94354650265526, 0.06709152015336184], [40.27126103016033, 0.0608061780101615], [39.91743237924775, 0.05761495172159847]], [[39.91743237924775, 0.05761495172159847], [39.315827129247616, 0.052329154487093826], [39.02638132377312, 0.04995285644223815], [38.1702839269217, 0.043061025239525874], [38.171408325371246, 0.04312397733330159], [37.696186039700414, 0.03944856610098649], [36.94799476465078, 0.03403803884951845], [36.55577169093644, 0.03132675331639623]], [[36.55577169093644, 0.03132675331639623], [35.91224934205083, 0.027025349874293142], [35.60421157565673, 0.02512866440336975], [34.69467180749164, 0.01966623504162482], [34.696204535535905, 0.01973362209099], [34.19298026320684, 0.016852343496734035], [33.40408151668095, 0.01270759613338815], [32.991791722714325, 0.010658990398083185]], [[32.991791722714325, 0.010658990398083185], [32.32035257719971, 0.007463945263192662], [32.00043881324034, 0.006086350894188311], [31.05720223751847, 0.002156778328793796], [31.05914998740604, 0.0022205135098835316], [30.53874175294163, 0.00017633438946643154], [29.725990028270406, -0.0026787632097229758], [29.302322562766737, -0.004064716551576003]], [[29.302322562766737, -0.004064716551576003], [28.62079186713181, -0.006168918267411214], [28.2971930586516, -0.007051644050249425], [27.343940089568274, -0.009531921492493503], [27.34621015005478, -0.00948040920927136], [26.821209788458493, -0.010744043104077436], [26.003370009270828, -0.012437172274957595], [25.577681810515216, -0.013236223846670878]], [[25.577681810515216, -0.013236223846670878], [24.892421670208613, -0.014417801094699742], [24.56782616646399, -0.014891620070602421], [23.611765589519063, -0.016180865150781223], [23.614288812492592, -0.016145063663307938], [23.088038293726058, -0.01677289613986996], [22.26910853056632, -0.01754380621777938], [21.84288999583587, -0.017882720795927752]], [[21.84288999583587, -0.017882720795927752], [21.156334884835108, -0.018345784547307127], [20.831223339968243, -0.01850856332313737], [19.872209121835542, -0.0188964400858367], [19.874865075347426, -0.018877223021188383], [19.345970948097666, -0.01902743703105738], [18.521205386210394, -0.01912350666034328], [18.09072486316453, -0.019129149103698513]], [[18.09072486316453, -0.019129149103698513], [17.390978510249635, -0.019075182885257003], [17.058466927260504, -0.01901809678265811], [16.072433799440944, -0.018767700532820918], [16.075115278142746, -0.01876309923257709], [15.527228561787394, -0.018574044788813127], [14.665108042839753, -0.018194870918124387], [14.210679415729235, -0.017963681790730327]], [[14.210679415729235, -0.017963681790730327], [13.460841740951489, -0.017532723861679762], [13.09980656457531, -0.0173131021217776], [12.011115841314401, -0.016569247340887317], [12.013693928484853, -0.01657622164205451], [11.393645318481195, -0.016105990617878457], [10.38729099434146, -0.01528994383890542], [9.838307102538602, -0.014812116064381691]], [[9.838307102538602, -0.014812116064381691], [9.152261136680975, -0.014176317599052534], [8.807097762669601, -0.013851682431558028], [7.71879334138072, -0.012738941760064543], [7.719872367962244, -0.012745803726334787], [7.055585664601815, -0.012005598917505807], [5.872324282735631, -0.010575151658251337], [5.149509411143692, -0.009610802858193738]]], true, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}([260.06723655405875, 0.32722433280414565], [247.30930403827728, 0.34819911642017964], [9.838307102538602, -0.014812116064381691], [9.152261136680975, -0.014176317599052534], [8.807097762669601, -0.013851682431558028], [7.71879334138072, -0.012738941760064543], [7.719872367962244, -0.012745803726334787], [7.055585664601815, -0.012005598917505807], [5.872324282735631, -0.010575151658251337], [5.149509411143692, -0.009610802858193738], [0.00852559440045434, -2.0119929604387464e-5], [258.9155789819566, 0.32933469754289435], [0.03278214407656884, -0.05761735542359684], OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}(0.16666666666666666, 0.0625, 0.1875, 0.25, -0.75, -0.75, 3.75, -3.0, 0.5, 0.26895043731778423, -0.7084548104956269, 0.8658892128279884, 0.15462307371928363, 0.06184922948771345, -0.02947695035460993, 0.18500664893617022, 0.4802345261121857, -0.5337849069148937, -0.013090093085106383, 0.7861107753062541, 0.08783068783068783, 0.3006060606060606, 0.22777777777777777, 0.027777777777777776, 0.06218596218596219, 0.2938217338217338, 0.16666666666666666, 0.25, 0.5, 0.5, 0.6428571428571429, 0.875, -0.19894179894179895, 0.9115151515151515, -1.9777777777777779, -0.1111111111111111, 1.67013727013727, -0.2938217338217338, 1.892063492063492, -6.067155067155067, 7.282458282458283, -4.0195360195360195, -7.214545454545455, 20.676923076923078, -20.31142191142191, 7.14965034965035, 7.866666666666666, -18.78205128205128, 13.508547008547009, -2.3653846153846154, 2.0, -5.294871794871795, 4.534188034188034, -1.2115384615384615, -1.4924630924630924, 1.5785667324128863, 1.1958838881915805, -1.219801565955412, -7.051721611721612, 16.273203719357564, -11.978886071193763, 3.0512256973795435, 4.0, -8.384615384615385, 5.769230769230769, -1.3846153846153846))), true, 0, DiffEqBase.DEStats
Number of function 1 evaluations: 234
Number of function 2 evaluations: 0
Number of W matrix evaluations: 0
Number of linear solves: 0
Number of Jacobians created: 0
Number of nonlinear solver iterations: 0
Number of nonlinear solver convergence failures: 0
Number of rootfind condition calls: 0
Number of accepted steps: 19
Number of rejected steps: 14, :Success), SciMLBase.ODESolution{Float64, 2, Vector{Vector{Float64}}, Nothing, Nothing, Vector{Float64}, Vector{Vector{Vector{Float64}}}, SciMLBase.ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Any}, SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}, SciMLBase.StandardODEProblem}, OwrenZen5, OrdinaryDiffEq.InterpolationData{SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}}, DiffEqBase.DEStats}([[0.0, 0.0], [0.01212604423322558, 0.0002067499455912], [0.13338368450765992, 0.002274153852324587], [1.345679837895914, 0.022938638001797414], [13.440572708941787, 0.22862798771041795], [43.93810986747227, 0.743388318266301], [55.85386922753595, 0.9429782544765216], [59.80235601466705, 1.00892355806184], [60.0592447527859, 1.0124248713287154], [60.1795366273383, 1.0131786589470235] … [167.46629586563333, 1.1279562535378613], [191.45488582313556, 1.0768582254960142], [217.3303131740597, 1.0115746208641678], [245.1269870025268, 0.9354495334050005], [274.8926691199833, 0.8516847686285277], [306.8612978620087, 0.7625625612586252], [341.58394246859336, 0.6688546113072922], [375.0152312492648, 0.5818199447726602], [402.5130965618371, 0.5104756913360825], [412.8002973796307, 0.4820993586311031]], nothing, nothing, [0.0, 9.999999999999999e-5, 0.0010999999999999998, 0.011099999999999997, 0.11109999999999996, 0.36515975117766236, 0.4651856822358744, 0.49842749435781275, 0.5005919751365738, 0.5016061758545334 … 1.7319479494347247, 2.119992869431887, 2.600133121689281, 3.1995115307788837, 3.9572135949420186, 4.938979618943902, 6.27256051426141, 7.964194781746699, 9.973325021907373, 11.18], [[[0.0, 0.0]], [[121.26069706086078, 2.067508142200963], [121.26061215141499, 2.0675052467713093], [121.26056969666976, 2.067503799056481], [121.26044233234519, 2.0674994559120066], [121.26044233234519, 2.0674994559120066], [121.26036955267072, 2.067496974115152], [121.26025128560691, 2.0674929411952747], [121.26018760329362, 2.0674907696230194]], [[121.26018760329362, 2.0674907696230194], [121.25933850259294, 2.067461815326486], [121.25891395001271, 2.067447338178211], [121.25764028335338, 2.0674039067333885], [121.25764028335338, 2.0674039067333885], [121.25691246782709, 2.067379088764918], [121.25572975827959, 2.0673387595661548], [121.25509290989835, 2.067317043843727]], [[121.25509290989835, 2.067317043843727], [121.24660127851713, 2.0670275008782557], [121.24235523979839, 2.066882729395511], [121.22961623134344, 2.066448414947289], [121.22961623134321, 2.06644841494728], [121.2223361968839, 2.0662002352625772], [121.21050520832237, 2.0657969432749423], [121.20413419768046, 2.0655797860508196]], [[121.20413419768046, 2.0655797860508196], [121.11915536629454, 2.0626843563959487], [121.07664358439334, 2.061236641568513], [120.94901858516711, 2.0568934970862056], [120.94901858516711, 2.0568934970862056], [120.8760295138413, 2.054411700239174], [120.757328180506, 2.0503787803627462], [120.69336372320089, 2.048207208121593]], [[120.69336372320089, 2.048207208121593], [120.47643410119176, 2.040851086744903], [120.36782268196833, 2.0371730260565584], [120.04139880713933, 2.0261388439915233], [120.04139880713933, 2.0261388439915233], [119.85447172927815, 2.019833597097218], [119.55009185751399, 2.0095875708939723], [119.38587357107407, 2.0040704798614546]], [[119.38587357107407, 2.0040704798614546], [119.29957719350675, 2.001174299391033], [119.25640558754057, 1.9997262091558234], [119.12679689721988, 1.995381938450193], [119.12679689721988, 1.995381938450193], [119.05267143715743, 1.9928994980469754], [118.93211903009517, 1.9888655323917472], [118.86715555465467, 1.9866933970389316]], [[118.86715555465467, 1.9866933970389316], [118.83835828286965, 1.9857309037529356], [118.82395702981917, 1.9852496571099392], [118.78074279442, 1.9838059171809466], [118.78074279442, 1.9838059171809466], [118.75604188529792, 1.9829809229358073], [118.71589194648253, 1.9816403072874564], [118.69426712328543, 1.9809184373229602]], [[118.69426712328543, 1.9809184373229602], [118.69238952214651, 1.9808557663046187], [118.69145071043877, 1.980824430795448], [118.68863423076023, 1.9807304242679342], [118.68863423076023, 1.9807304242679342], [118.6870247837931, 1.980676706252212], [118.66785324360856, 0.7447798377219563], [118.64686962857178, 0.7446002423559517]], [[118.64686962857178, 0.7446002423559517], [118.6337619433285, 0.7441441079605169], [118.62721023241642, 0.7439162303056024], [118.60755754533831, 0.7432327916230821], [118.607557547218, 0.7432327920150621], [118.59633044977228, 0.742842512545417], [118.5780910883996, 0.7422087078448998], [118.56827228684067, 0.7418676326778217]] … [[74.44360713220257, -0.08542137747178535], [72.8876709277276, -0.09465416406035054], [72.15471641219618, -0.09835710442801393], [69.99948572175369, -0.10869837157431017], [70.00659707567986, -0.1083479643991897], [68.82489848772546, -0.11355357491713003], [66.99822148695377, -0.12003486277582254], [66.05249499614617, -0.12298265278869358]], [[66.05249499614617, -0.12298265278869358], [64.5339597346001, -0.12718816083838747], [63.822065024570264, -0.12870024654760115], [61.731928937039754, -0.13267627989389696], [61.73995915944346, -0.13243428113974287], [60.59708253211126, -0.13426076400867154], [58.8381315511036, -0.13594094903813575], [57.929962384935905, -0.13651769067771952]], [[57.929962384935905, -0.13651769067771952], [56.474516589090044, -0.137046594368954], [55.79512011000688, -0.13700529517783416], [53.80312476707659, -0.13650146205075736], [53.8117895671873, -0.1363715943447678], [52.725153088335624, -0.13584359760212544], [51.0592639594873, -0.13431631253456278], [50.2011616449872, -0.13333851002344305]], [[50.2011616449872, -0.13333851002344305], [48.81632749723221, -0.13148166761135088], [48.172594731459476, -0.13046815330560885], [46.287643657956096, -0.1271877468619551], [46.29682160208999, -0.1271547762396842], [45.270838239185466, -0.12518621292647975], [43.7038052026811, -0.12180360904319432], [42.89834067252884, -0.11995061739375384]], [[42.89834067252884, -0.11995061739375384], [41.584349306846626, -0.11674454890346858], [40.97603592692987, -0.1152138453578716], [39.19689916736723, -0.11048404929285699], [39.20650719700043, -0.11052772567757232], [38.23997610647972, -0.1078255553961667], [36.76880252700155, -0.10360183491303454], [36.01391930651036, -0.10137656311088583]], [[36.01391930651036, -0.10137656311088583], [34.75377504920593, -0.0975530362208768], [34.17294355296384, -0.09581915483672962], [32.47572510469019, -0.09054823052421632], [32.48594445327627, -0.09065010665966591], [31.56528377287658, -0.08769290760587146], [30.16827745764324, -0.08329352534159871], [29.452187502151965, -0.08102057890550637]], [[29.452187502151965, -0.08102057890550637], [28.200652754580858, -0.07699707973529568], [27.626779321875745, -0.07523871382242926], [25.949692008587014, -0.06993258240973113], [25.961254875811658, -0.07008553646131553], [25.051497243839297, -0.0671312818618122], [23.673556117911343, -0.06290915551241984], [22.96626778095351, -0.06075448913463305]], [[22.96626778095351, -0.06075448913463305], [21.808005775919888, -0.057231049097744596], [21.27257259573157, -0.055712153108088615], [19.69668658618171, -0.051141538830856384], [19.706233627475665, -0.05128219769562696], [18.84200392839898, -0.04874354746024256], [17.51176900006953, -0.04513605501832022], [16.818406826297323, -0.043289581890432215]], [[16.818406826297323, -0.043289581890432215], [15.737814942424219, -0.04044487770611053], [15.224579268344218, -0.03919506868972239], [13.676887091999484, -0.03537480108046473], [13.683040600079108, -0.03546644767786018], [12.801798847534736, -0.033293163720062], [11.371560869363247, -0.02999250617984344], [10.5840619652788, -0.028196792964103636]], [[10.5840619652788, -0.028196792964103636], [9.93598869237227, -0.026720135308233636], [9.608767642342517, -0.02599313558743742], [8.58183816261825, -0.02366847504494162], [8.582475676926563, -0.023677531400888553], [7.960761705795066, -0.02225056678042584], [6.871461863872013, -0.01971727277494369], [6.225576885629735, -0.01817165413688425]]], SciMLBase.ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Any}, SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}, SciMLBase.StandardODEProblem}(SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}(GasChromatographySimulator.odesystem_r!, LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, SciMLBase.DEFAULT_OBSERVED, nothing), [0.0, 0.0], (0.0, 11.18), Any[GasChromatographySimulator.Column(11.18, 0.000104, [0.000104], 1.04e-7, [1.04e-7], "FS5ms", "H2"), GasChromatographySimulator.Program{GasChromatographySimulator.var"#gf#5"{Matrix{Float64}}}([0.0, 60.0, 1680.0, 60.0, 360.0, 60.0], [40.0, 40.0, 180.0, 180.0, 300.0, 300.0], [411564.0, 411564.0, 411564.0, 411564.0, 411564.0, 411564.0], [101300.0, 101300.0, 101300.0, 101300.0, 101300.0, 101300.0], GasChromatographySimulator.var"#gf#5"{Matrix{Float64}}([0.0 0.0 11.18 0.0; 0.0 0.0 11.18 0.0; … ; 0.0 0.0 11.18 0.0; 0.0 0.0 11.18 0.0]), [0.0 0.0 11.18 0.0; 0.0 0.0 11.18 0.0; … ; 0.0 0.0 11.18 0.0; 0.0 0.0 11.18 0.0], 11181×6 extrapolate(interpolate((0.0:0.001:11.18,::Vector{Float64}), ::Matrix{Float64}, Gridded(Linear())), Flat()) with element type Float64:
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
⋮ ⋮
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15, 6-element extrapolate(interpolate((::Vector{Float64},), ::Vector{Float64}, Gridded(Linear())), Flat()) with element type Float64:
411564.0
411564.0
411564.0
411564.0
411564.0
411564.0, 6-element extrapolate(interpolate((::Vector{Float64},), ::Vector{Float64}, Gridded(Linear())), Flat()) with element type Float64:
101300.0
101300.0
101300.0
101300.0
101300.0
101300.0), GasChromatographySimulator.Substance("C11", "1120-21-4", 410.21999999999997, 33.71, 116.04, 0.001, "Leppert2020b, alkane, Grob, alkanes", 0.00011323854999018596, 0.0, 0.0), GasChromatographySimulator.Options(OwrenZen5(), 1.0e-6, 0.001, "inlet", true, true, "Blumberg", "Pressure")], Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}(), SciMLBase.StandardODEProblem()), OwrenZen5(), OrdinaryDiffEq.InterpolationData{SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}}(SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}(GasChromatographySimulator.odesystem_r!, LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, SciMLBase.DEFAULT_OBSERVED, nothing), [[0.0, 0.0], [0.01212604423322558, 0.0002067499455912], [0.13338368450765992, 0.002274153852324587], [1.345679837895914, 0.022938638001797414], [13.440572708941787, 0.22862798771041795], [43.93810986747227, 0.743388318266301], [55.85386922753595, 0.9429782544765216], [59.80235601466705, 1.00892355806184], [60.0592447527859, 1.0124248713287154], [60.1795366273383, 1.0131786589470235] … [167.46629586563333, 1.1279562535378613], [191.45488582313556, 1.0768582254960142], [217.3303131740597, 1.0115746208641678], [245.1269870025268, 0.9354495334050005], [274.8926691199833, 0.8516847686285277], [306.8612978620087, 0.7625625612586252], [341.58394246859336, 0.6688546113072922], [375.0152312492648, 0.5818199447726602], [402.5130965618371, 0.5104756913360825], [412.8002973796307, 0.4820993586311031]], [0.0, 9.999999999999999e-5, 0.0010999999999999998, 0.011099999999999997, 0.11109999999999996, 0.36515975117766236, 0.4651856822358744, 0.49842749435781275, 0.5005919751365738, 0.5016061758545334 … 1.7319479494347247, 2.119992869431887, 2.600133121689281, 3.1995115307788837, 3.9572135949420186, 4.938979618943902, 6.27256051426141, 7.964194781746699, 9.973325021907373, 11.18], [[[0.0, 0.0]], [[121.26069706086078, 2.067508142200963], [121.26061215141499, 2.0675052467713093], [121.26056969666976, 2.067503799056481], [121.26044233234519, 2.0674994559120066], [121.26044233234519, 2.0674994559120066], [121.26036955267072, 2.067496974115152], [121.26025128560691, 2.0674929411952747], [121.26018760329362, 2.0674907696230194]], [[121.26018760329362, 2.0674907696230194], [121.25933850259294, 2.067461815326486], [121.25891395001271, 2.067447338178211], [121.25764028335338, 2.0674039067333885], [121.25764028335338, 2.0674039067333885], [121.25691246782709, 2.067379088764918], [121.25572975827959, 2.0673387595661548], [121.25509290989835, 2.067317043843727]], [[121.25509290989835, 2.067317043843727], [121.24660127851713, 2.0670275008782557], [121.24235523979839, 2.066882729395511], [121.22961623134344, 2.066448414947289], [121.22961623134321, 2.06644841494728], [121.2223361968839, 2.0662002352625772], [121.21050520832237, 2.0657969432749423], [121.20413419768046, 2.0655797860508196]], [[121.20413419768046, 2.0655797860508196], [121.11915536629454, 2.0626843563959487], [121.07664358439334, 2.061236641568513], [120.94901858516711, 2.0568934970862056], [120.94901858516711, 2.0568934970862056], [120.8760295138413, 2.054411700239174], [120.757328180506, 2.0503787803627462], [120.69336372320089, 2.048207208121593]], [[120.69336372320089, 2.048207208121593], [120.47643410119176, 2.040851086744903], [120.36782268196833, 2.0371730260565584], [120.04139880713933, 2.0261388439915233], [120.04139880713933, 2.0261388439915233], [119.85447172927815, 2.019833597097218], [119.55009185751399, 2.0095875708939723], [119.38587357107407, 2.0040704798614546]], [[119.38587357107407, 2.0040704798614546], [119.29957719350675, 2.001174299391033], [119.25640558754057, 1.9997262091558234], [119.12679689721988, 1.995381938450193], [119.12679689721988, 1.995381938450193], [119.05267143715743, 1.9928994980469754], [118.93211903009517, 1.9888655323917472], [118.86715555465467, 1.9866933970389316]], [[118.86715555465467, 1.9866933970389316], [118.83835828286965, 1.9857309037529356], [118.82395702981917, 1.9852496571099392], [118.78074279442, 1.9838059171809466], [118.78074279442, 1.9838059171809466], [118.75604188529792, 1.9829809229358073], [118.71589194648253, 1.9816403072874564], [118.69426712328543, 1.9809184373229602]], [[118.69426712328543, 1.9809184373229602], [118.69238952214651, 1.9808557663046187], [118.69145071043877, 1.980824430795448], [118.68863423076023, 1.9807304242679342], [118.68863423076023, 1.9807304242679342], [118.6870247837931, 1.980676706252212], [118.66785324360856, 0.7447798377219563], [118.64686962857178, 0.7446002423559517]], [[118.64686962857178, 0.7446002423559517], [118.6337619433285, 0.7441441079605169], [118.62721023241642, 0.7439162303056024], [118.60755754533831, 0.7432327916230821], [118.607557547218, 0.7432327920150621], [118.59633044977228, 0.742842512545417], [118.5780910883996, 0.7422087078448998], [118.56827228684067, 0.7418676326778217]] … [[74.44360713220257, -0.08542137747178535], [72.8876709277276, -0.09465416406035054], [72.15471641219618, -0.09835710442801393], [69.99948572175369, -0.10869837157431017], [70.00659707567986, -0.1083479643991897], [68.82489848772546, -0.11355357491713003], [66.99822148695377, -0.12003486277582254], [66.05249499614617, -0.12298265278869358]], [[66.05249499614617, -0.12298265278869358], [64.5339597346001, -0.12718816083838747], [63.822065024570264, -0.12870024654760115], [61.731928937039754, -0.13267627989389696], [61.73995915944346, -0.13243428113974287], [60.59708253211126, -0.13426076400867154], [58.8381315511036, -0.13594094903813575], [57.929962384935905, -0.13651769067771952]], [[57.929962384935905, -0.13651769067771952], [56.474516589090044, -0.137046594368954], [55.79512011000688, -0.13700529517783416], [53.80312476707659, -0.13650146205075736], [53.8117895671873, -0.1363715943447678], [52.725153088335624, -0.13584359760212544], [51.0592639594873, -0.13431631253456278], [50.2011616449872, -0.13333851002344305]], [[50.2011616449872, -0.13333851002344305], [48.81632749723221, -0.13148166761135088], [48.172594731459476, -0.13046815330560885], [46.287643657956096, -0.1271877468619551], [46.29682160208999, -0.1271547762396842], [45.270838239185466, -0.12518621292647975], [43.7038052026811, -0.12180360904319432], [42.89834067252884, -0.11995061739375384]], [[42.89834067252884, -0.11995061739375384], [41.584349306846626, -0.11674454890346858], [40.97603592692987, -0.1152138453578716], [39.19689916736723, -0.11048404929285699], [39.20650719700043, -0.11052772567757232], [38.23997610647972, -0.1078255553961667], [36.76880252700155, -0.10360183491303454], [36.01391930651036, -0.10137656311088583]], [[36.01391930651036, -0.10137656311088583], [34.75377504920593, -0.0975530362208768], [34.17294355296384, -0.09581915483672962], [32.47572510469019, -0.09054823052421632], [32.48594445327627, -0.09065010665966591], [31.56528377287658, -0.08769290760587146], [30.16827745764324, -0.08329352534159871], [29.452187502151965, -0.08102057890550637]], [[29.452187502151965, -0.08102057890550637], [28.200652754580858, -0.07699707973529568], [27.626779321875745, -0.07523871382242926], [25.949692008587014, -0.06993258240973113], [25.961254875811658, -0.07008553646131553], [25.051497243839297, -0.0671312818618122], [23.673556117911343, -0.06290915551241984], [22.96626778095351, -0.06075448913463305]], [[22.96626778095351, -0.06075448913463305], [21.808005775919888, -0.057231049097744596], [21.27257259573157, -0.055712153108088615], [19.69668658618171, -0.051141538830856384], [19.706233627475665, -0.05128219769562696], [18.84200392839898, -0.04874354746024256], [17.51176900006953, -0.04513605501832022], [16.818406826297323, -0.043289581890432215]], [[16.818406826297323, -0.043289581890432215], [15.737814942424219, -0.04044487770611053], [15.224579268344218, -0.03919506868972239], [13.676887091999484, -0.03537480108046473], [13.683040600079108, -0.03546644767786018], [12.801798847534736, -0.033293163720062], [11.371560869363247, -0.02999250617984344], [10.5840619652788, -0.028196792964103636]], [[10.5840619652788, -0.028196792964103636], [9.93598869237227, -0.026720135308233636], [9.608767642342517, -0.02599313558743742], [8.58183816261825, -0.02366847504494162], [8.582475676926563, -0.023677531400888553], [7.960761705795066, -0.02225056678042584], [6.871461863872013, -0.01971727277494369], [6.225576885629735, -0.01817165413688425]]], true, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}([412.8002973796307, 0.4820993586311031], [402.5130965618371, 0.5104756913360825], [10.5840619652788, -0.028196792964103636], [9.93598869237227, -0.026720135308233636], [9.608767642342517, -0.02599313558743742], [8.58183816261825, -0.02366847504494162], [8.582475676926563, -0.023677531400888553], [7.960761705795066, -0.02225056678042584], [6.871461863872013, -0.01971727277494369], [6.225576885629735, -0.01817165413688425], [0.003532820509822202, -1.1985896851871156e-5], [411.8111783225901, 0.4849633932489087], [0.008558162322278897, -0.023433952101538712], OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}(0.16666666666666666, 0.0625, 0.1875, 0.25, -0.75, -0.75, 3.75, -3.0, 0.5, 0.26895043731778423, -0.7084548104956269, 0.8658892128279884, 0.15462307371928363, 0.06184922948771345, -0.02947695035460993, 0.18500664893617022, 0.4802345261121857, -0.5337849069148937, -0.013090093085106383, 0.7861107753062541, 0.08783068783068783, 0.3006060606060606, 0.22777777777777777, 0.027777777777777776, 0.06218596218596219, 0.2938217338217338, 0.16666666666666666, 0.25, 0.5, 0.5, 0.6428571428571429, 0.875, -0.19894179894179895, 0.9115151515151515, -1.9777777777777779, -0.1111111111111111, 1.67013727013727, -0.2938217338217338, 1.892063492063492, -6.067155067155067, 7.282458282458283, -4.0195360195360195, -7.214545454545455, 20.676923076923078, -20.31142191142191, 7.14965034965035, 7.866666666666666, -18.78205128205128, 13.508547008547009, -2.3653846153846154, 2.0, -5.294871794871795, 4.534188034188034, -1.2115384615384615, -1.4924630924630924, 1.5785667324128863, 1.1958838881915805, -1.219801565955412, -7.051721611721612, 16.273203719357564, -11.978886071193763, 3.0512256973795435, 4.0, -8.384615384615385, 5.769230769230769, -1.3846153846153846))), true, 0, DiffEqBase.DEStats
Number of function 1 evaluations: 360
Number of function 2 evaluations: 0
Number of W matrix evaluations: 0
Number of linear solves: 0
Number of Jacobians created: 0
Number of nonlinear solver iterations: 0
Number of nonlinear solver convergence failures: 0
Number of rootfind condition calls: 0
Number of accepted steps: 26
Number of rejected steps: 25, :Success), SciMLBase.ODESolution{Float64, 2, Vector{Vector{Float64}}, Nothing, Nothing, Vector{Float64}, Vector{Vector{Vector{Float64}}}, SciMLBase.ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Any}, SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}, SciMLBase.StandardODEProblem}, OwrenZen5, OrdinaryDiffEq.InterpolationData{SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}}, DiffEqBase.DEStats}([[0.0, 0.0], [0.031234858582652274, 0.0014304308334663128], [0.34357622673141347, 0.015734078096655807], [3.466268028203005, 0.15870444358119157], [34.620885406582325, 1.5817973836906158], [49.79083179629882, 2.2725545395762117], [56.92538725951205, 2.5969270997681857], [59.455960276777425, 2.711903126158041], [60.015087748277146, 2.737301552790204], [65.51695724342629, 2.8102150770981584] … [294.5969225949649, 1.9125053300844777], [331.9752139225331, 1.6632148479457487], [367.14351418343324, 1.451735126115357], [402.1337552680033, 1.2637004142252113], [436.37680431565116, 1.099974641616828], [470.0421101047756, 0.9565834411976775], [502.601296897343, 0.8321959021203299], [533.4476733742906, 0.7248493100643213], [561.1493266049126, 0.63425586409754], [580.175860002369, 0.5716958903006855]], nothing, nothing, [0.0, 9.999999999999999e-5, 0.0010999999999999998, 0.011099999999999997, 0.11109999999999996, 0.15994618277717132, 0.18295411228298886, 0.19112027877497884, 0.19292496882088475, 0.21097186927994396 … 1.7521505765761227, 2.2365633880238596, 2.789603878035511, 3.45507277393434, 4.245293826538488, 5.194450396383983, 6.331657489824366, 7.702383623869318, 9.365616634552813, 11.18], [[[0.0, 0.0]], [[312.3492419689374, 14.304368432069733], [312.34902325502867, 14.304348399600842], [312.34891389801675, 14.304338383366385], [312.34858582675326, 14.304308334663201], [312.34858582675326, 14.304308334663201], [312.3483983573025, 14.30429116397542], [312.3480937192093, 14.304263261608183], [312.3479296831873, 14.30424823725635]], [[312.3479296831873, 14.30424823725635], [312.3457425280186, 14.304047912567382], [312.34464894469096, 14.303947750222902], [312.34136817173476, 14.303647263189449], [312.34136817173476, 14.303647263189449], [312.339493428859, 14.30347555631319], [312.3364469476875, 14.303196532639442], [312.3348065224382, 14.303046289122543]], [[312.3348065224382, 14.303046289122543], [312.31293336246625, 14.301043042232875], [312.3019962079958, 14.300041418788203], [312.26918244614984, 14.297036548453521], [312.26918244614984, 14.297036548453521], [312.2504301768673, 14.295319479691104], [312.21995533713124, 14.29252924295175], [312.20354457591367, 14.291026807784467]], [[312.20354457591367, 14.291026807784467], [311.9846519403779, 14.270994338887911], [311.8751480106328, 14.260978104439374], [311.5464052874684, 14.230929401094247], [311.5464052874684, 14.230929401094247], [311.358396463066, 14.213758713468465], [311.05263975552066, 14.185856346076568], [310.88787697387363, 14.170831994404004]], [[310.88787697387363, 14.170831994404004], [310.78052289741584, 14.161046898031918], [310.72683195038945, 14.15615434984587], [310.5657034164088, 14.141476705287738], [310.5657034164088, 14.141476705287738], [310.47359242387716, 14.133089479825955], [310.32385374868244, 14.11946023845055], [310.2431952964243, 14.112121416171483]], [[310.2431952964243, 14.112121416171483], [310.19252803343284, 14.107512359849446], [310.16719129816164, 14.105207831688427], [310.0911686711596, 14.098294247205368], [310.0911686711596, 14.098294247205368], [310.0477188008184, 14.094343627500761], [309.9770997717865, 14.087923870480747], [309.93906747610225, 14.084467078239252]], [[309.93906747610225, 14.084467078239252], [309.92106752912736, 14.082831193476684], [309.9120671635956, 14.082013251095407], [309.88506449855106, 14.079559423951713], [309.88506449855106, 14.079559423951713], [309.8696333477583, 14.078157237012215], [309.8445560886226, 14.075878683235759], [309.8310521083779, 14.074651769663863]], [[309.8310521083779, 14.074651769663863], [309.8270728954717, 14.074290245691733], [309.8250832698537, 14.074109483705671], [309.8191143163364, 14.073567197747474], [309.8191143163364, 14.073567197747474], [309.8157034341231, 14.073257320057078], [309.81016067043424, 14.072753768810191], [309.7806854358767, 4.458284109700463]], [[309.7806854358767, 4.458284109700463], [308.11009955288876, 4.312016919683993], [307.2884455204805, 4.24195588198109], [304.83781939123315, 4.03448442783152], [304.8384450906457, 4.03481858295155], [303.45588500642776, 3.919823798504302], [301.2382133526692, 3.739308837627334], [300.05803340290305, 3.64491236271739]] … [[101.43921260223385, -0.7526151286161931], [98.3037279062643, -0.7228287831973668], [96.87267449181047, -0.7094155496599732], [92.69580618610506, -0.6688049866210428], [92.72921383725509, -0.6696798320672748], [90.47169848896368, -0.646960561040413], [87.08442948922958, -0.613520874060726], [85.35891158931848, -0.5963185092686353]], [[85.35891158931848, -0.5963185092686353], [82.29755181735958, -0.5653753416514224], [80.9182774238946, -0.5520126495376828], [76.90484742925169, -0.5117551894860543], [76.94663065721502, -0.5131871203952935], [74.78799632985773, -0.49072267637914846], [71.59109676805825, -0.45937008962534764], [69.9722444049113, -0.4434602301833591]], [[69.9722444049113, -0.4434602301833591], [67.6098939408175, -0.42019321099869866], [66.53573371853012, -0.41016720227489756], [63.40554352091409, -0.38016810934780465], [63.43219539395, -0.3811653047229765], [61.74391171855904, -0.36455644223919603], [59.219869332046486, -0.34134444161809985], [57.93655108492993, -0.32960011164793823]], [[57.93655108492993, -0.32960011164793823], [55.95849921543267, -0.31155267441958945], [55.056657562633475, -0.3038176980545551], [52.42801072333443, -0.28075912744576353], [52.44887249465464, -0.2815342838012653], [51.0300206178807, -0.2688213980823401], [48.90263701228525, -0.25114983658682216], [47.819534053929665, -0.24223796485067972]], [[47.819534053929665, -0.24223796485067972], [46.169981978523005, -0.22876166362416622], [45.41472951815257, -0.22298801456844625], [43.21168799334734, -0.2058291358678843], [43.22740301595097, -0.20638148083363042], [42.03631999945016, -0.19696033244030456], [40.24225263300838, -0.18384641825891201], [39.32664908912446, -0.17724462473671818]], [[39.32664908912446, -0.17724462473671818], [37.91378161945373, -0.16716110027263736], [37.2645050925174, -0.16284388388862683], [35.36863362087022, -0.15004381564108493], [35.380945038594106, -0.15044166490978542], [34.353868160951876, -0.14343743721624347], [32.799853932567714, -0.13367791929958353], [32.004477494265856, -0.12877171775943097]], [[32.004477494265856, -0.12877171775943097], [30.77720576695863, -0.12130325163461002], [30.21016820775815, -0.11810087498839886], [28.550509689880048, -0.10862307378776014], [28.56000006817365, -0.10889954483379101], [27.657276547556773, -0.10372849050242829], [26.281578955913677, -0.09648889699769807], [25.57372231312399, -0.09284909641332387]], [[25.57372231312399, -0.09284909641332387], [24.469837037947244, -0.08727084245150354], [23.955694197300332, -0.08487112580215983], [22.442756732023547, -0.07776855853621245], [22.450096534686523, -0.07795873080875663], [21.62024833750733, -0.07408624832283492], [20.33968081946702, -0.068610647212], [19.673563218583258, -0.06584572445081614]], [[19.673563218583258, -0.06584572445081614], [18.617011475194975, -0.06155563085036737], [18.11724118692736, -0.05969064618745137], [16.625280908669577, -0.05412550256395697], [16.63090990649627, -0.054253716688370944], [15.794493692119689, -0.051185664739651957], [14.465148294646598, -0.04670509952101016], [13.752784048149614, -0.04438161928830228]], [[13.752784048149614, -0.04438161928830228], [12.706119077145445, -0.04103540144159791], [12.189291972809812, -0.03949298116723981], [10.572850949194152, -0.03464626903954164], [10.576144718235637, -0.03470942411134387], [9.600671766290475, -0.03180388122590169], [7.88008557059758, -0.026807295531296974], [6.830383351432274, -0.02370709067020727]]], SciMLBase.ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Any}, SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}, SciMLBase.StandardODEProblem}(SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}(GasChromatographySimulator.odesystem_r!, LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, SciMLBase.DEFAULT_OBSERVED, nothing), [0.0, 0.0], (0.0, 11.18), Any[GasChromatographySimulator.Column(11.18, 0.000104, [0.000104], 1.04e-7, [1.04e-7], "FS5ms", "H2"), GasChromatographySimulator.Program{GasChromatographySimulator.var"#gf#5"{Matrix{Float64}}}([0.0, 60.0, 1680.0, 60.0, 360.0, 60.0], [40.0, 40.0, 180.0, 180.0, 300.0, 300.0], [411564.0, 411564.0, 411564.0, 411564.0, 411564.0, 411564.0], [101300.0, 101300.0, 101300.0, 101300.0, 101300.0, 101300.0], GasChromatographySimulator.var"#gf#5"{Matrix{Float64}}([0.0 0.0 11.18 0.0; 0.0 0.0 11.18 0.0; … ; 0.0 0.0 11.18 0.0; 0.0 0.0 11.18 0.0]), [0.0 0.0 11.18 0.0; 0.0 0.0 11.18 0.0; … ; 0.0 0.0 11.18 0.0; 0.0 0.0 11.18 0.0], 11181×6 extrapolate(interpolate((0.0:0.001:11.18,::Vector{Float64}), ::Matrix{Float64}, Gridded(Linear())), Flat()) with element type Float64:
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
⋮ ⋮
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15, 6-element extrapolate(interpolate((::Vector{Float64},), ::Vector{Float64}, Gridded(Linear())), Flat()) with element type Float64:
411564.0
411564.0
411564.0
411564.0
411564.0
411564.0, 6-element extrapolate(interpolate((::Vector{Float64},), ::Vector{Float64}, Gridded(Linear())), Flat()) with element type Float64:
101300.0
101300.0
101300.0
101300.0
101300.0
101300.0), GasChromatographySimulator.Substance("C12", "112-40-3", 427.92999999999995, 34.92, 121.44, 0.001, "Leppert2020b, alkane, alkanes", 0.00010831148421185742, 0.0, 0.0), GasChromatographySimulator.Options(OwrenZen5(), 1.0e-6, 0.001, "inlet", true, true, "Blumberg", "Pressure")], Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}(), SciMLBase.StandardODEProblem()), OwrenZen5(), OrdinaryDiffEq.InterpolationData{SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}}(SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}(GasChromatographySimulator.odesystem_r!, LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, SciMLBase.DEFAULT_OBSERVED, nothing), [[0.0, 0.0], [0.031234858582652274, 0.0014304308334663128], [0.34357622673141347, 0.015734078096655807], [3.466268028203005, 0.15870444358119157], [34.620885406582325, 1.5817973836906158], [49.79083179629882, 2.2725545395762117], [56.92538725951205, 2.5969270997681857], [59.455960276777425, 2.711903126158041], [60.015087748277146, 2.737301552790204], [65.51695724342629, 2.8102150770981584] … [294.5969225949649, 1.9125053300844777], [331.9752139225331, 1.6632148479457487], [367.14351418343324, 1.451735126115357], [402.1337552680033, 1.2637004142252113], [436.37680431565116, 1.099974641616828], [470.0421101047756, 0.9565834411976775], [502.601296897343, 0.8321959021203299], [533.4476733742906, 0.7248493100643213], [561.1493266049126, 0.63425586409754], [580.175860002369, 0.5716958903006855]], [0.0, 9.999999999999999e-5, 0.0010999999999999998, 0.011099999999999997, 0.11109999999999996, 0.15994618277717132, 0.18295411228298886, 0.19112027877497884, 0.19292496882088475, 0.21097186927994396 … 1.7521505765761227, 2.2365633880238596, 2.789603878035511, 3.45507277393434, 4.245293826538488, 5.194450396383983, 6.331657489824366, 7.702383623869318, 9.365616634552813, 11.18], [[[0.0, 0.0]], [[312.3492419689374, 14.304368432069733], [312.34902325502867, 14.304348399600842], [312.34891389801675, 14.304338383366385], [312.34858582675326, 14.304308334663201], [312.34858582675326, 14.304308334663201], [312.3483983573025, 14.30429116397542], [312.3480937192093, 14.304263261608183], [312.3479296831873, 14.30424823725635]], [[312.3479296831873, 14.30424823725635], [312.3457425280186, 14.304047912567382], [312.34464894469096, 14.303947750222902], [312.34136817173476, 14.303647263189449], [312.34136817173476, 14.303647263189449], [312.339493428859, 14.30347555631319], [312.3364469476875, 14.303196532639442], [312.3348065224382, 14.303046289122543]], [[312.3348065224382, 14.303046289122543], [312.31293336246625, 14.301043042232875], [312.3019962079958, 14.300041418788203], [312.26918244614984, 14.297036548453521], [312.26918244614984, 14.297036548453521], [312.2504301768673, 14.295319479691104], [312.21995533713124, 14.29252924295175], [312.20354457591367, 14.291026807784467]], [[312.20354457591367, 14.291026807784467], [311.9846519403779, 14.270994338887911], [311.8751480106328, 14.260978104439374], [311.5464052874684, 14.230929401094247], [311.5464052874684, 14.230929401094247], [311.358396463066, 14.213758713468465], [311.05263975552066, 14.185856346076568], [310.88787697387363, 14.170831994404004]], [[310.88787697387363, 14.170831994404004], [310.78052289741584, 14.161046898031918], [310.72683195038945, 14.15615434984587], [310.5657034164088, 14.141476705287738], [310.5657034164088, 14.141476705287738], [310.47359242387716, 14.133089479825955], [310.32385374868244, 14.11946023845055], [310.2431952964243, 14.112121416171483]], [[310.2431952964243, 14.112121416171483], [310.19252803343284, 14.107512359849446], [310.16719129816164, 14.105207831688427], [310.0911686711596, 14.098294247205368], [310.0911686711596, 14.098294247205368], [310.0477188008184, 14.094343627500761], [309.9770997717865, 14.087923870480747], [309.93906747610225, 14.084467078239252]], [[309.93906747610225, 14.084467078239252], [309.92106752912736, 14.082831193476684], [309.9120671635956, 14.082013251095407], [309.88506449855106, 14.079559423951713], [309.88506449855106, 14.079559423951713], [309.8696333477583, 14.078157237012215], [309.8445560886226, 14.075878683235759], [309.8310521083779, 14.074651769663863]], [[309.8310521083779, 14.074651769663863], [309.8270728954717, 14.074290245691733], [309.8250832698537, 14.074109483705671], [309.8191143163364, 14.073567197747474], [309.8191143163364, 14.073567197747474], [309.8157034341231, 14.073257320057078], [309.81016067043424, 14.072753768810191], [309.7806854358767, 4.458284109700463]], [[309.7806854358767, 4.458284109700463], [308.11009955288876, 4.312016919683993], [307.2884455204805, 4.24195588198109], [304.83781939123315, 4.03448442783152], [304.8384450906457, 4.03481858295155], [303.45588500642776, 3.919823798504302], [301.2382133526692, 3.739308837627334], [300.05803340290305, 3.64491236271739]] … [[101.43921260223385, -0.7526151286161931], [98.3037279062643, -0.7228287831973668], [96.87267449181047, -0.7094155496599732], [92.69580618610506, -0.6688049866210428], [92.72921383725509, -0.6696798320672748], [90.47169848896368, -0.646960561040413], [87.08442948922958, -0.613520874060726], [85.35891158931848, -0.5963185092686353]], [[85.35891158931848, -0.5963185092686353], [82.29755181735958, -0.5653753416514224], [80.9182774238946, -0.5520126495376828], [76.90484742925169, -0.5117551894860543], [76.94663065721502, -0.5131871203952935], [74.78799632985773, -0.49072267637914846], [71.59109676805825, -0.45937008962534764], [69.9722444049113, -0.4434602301833591]], [[69.9722444049113, -0.4434602301833591], [67.6098939408175, -0.42019321099869866], [66.53573371853012, -0.41016720227489756], [63.40554352091409, -0.38016810934780465], [63.43219539395, -0.3811653047229765], [61.74391171855904, -0.36455644223919603], [59.219869332046486, -0.34134444161809985], [57.93655108492993, -0.32960011164793823]], [[57.93655108492993, -0.32960011164793823], [55.95849921543267, -0.31155267441958945], [55.056657562633475, -0.3038176980545551], [52.42801072333443, -0.28075912744576353], [52.44887249465464, -0.2815342838012653], [51.0300206178807, -0.2688213980823401], [48.90263701228525, -0.25114983658682216], [47.819534053929665, -0.24223796485067972]], [[47.819534053929665, -0.24223796485067972], [46.169981978523005, -0.22876166362416622], [45.41472951815257, -0.22298801456844625], [43.21168799334734, -0.2058291358678843], [43.22740301595097, -0.20638148083363042], [42.03631999945016, -0.19696033244030456], [40.24225263300838, -0.18384641825891201], [39.32664908912446, -0.17724462473671818]], [[39.32664908912446, -0.17724462473671818], [37.91378161945373, -0.16716110027263736], [37.2645050925174, -0.16284388388862683], [35.36863362087022, -0.15004381564108493], [35.380945038594106, -0.15044166490978542], [34.353868160951876, -0.14343743721624347], [32.799853932567714, -0.13367791929958353], [32.004477494265856, -0.12877171775943097]], [[32.004477494265856, -0.12877171775943097], [30.77720576695863, -0.12130325163461002], [30.21016820775815, -0.11810087498839886], [28.550509689880048, -0.10862307378776014], [28.56000006817365, -0.10889954483379101], [27.657276547556773, -0.10372849050242829], [26.281578955913677, -0.09648889699769807], [25.57372231312399, -0.09284909641332387]], [[25.57372231312399, -0.09284909641332387], [24.469837037947244, -0.08727084245150354], [23.955694197300332, -0.08487112580215983], [22.442756732023547, -0.07776855853621245], [22.450096534686523, -0.07795873080875663], [21.62024833750733, -0.07408624832283492], [20.33968081946702, -0.068610647212], [19.673563218583258, -0.06584572445081614]], [[19.673563218583258, -0.06584572445081614], [18.617011475194975, -0.06155563085036737], [18.11724118692736, -0.05969064618745137], [16.625280908669577, -0.05412550256395697], [16.63090990649627, -0.054253716688370944], [15.794493692119689, -0.051185664739651957], [14.465148294646598, -0.04670509952101016], [13.752784048149614, -0.04438161928830228]], [[13.752784048149614, -0.04438161928830228], [12.706119077145445, -0.04103540144159791], [12.189291972809812, -0.03949298116723981], [10.572850949194152, -0.03464626903954164], [10.576144718235637, -0.03470942411134387], [9.600671766290475, -0.03180388122590169], [7.88008557059758, -0.026807295531296974], [6.830383351432274, -0.02370709067020727]]], true, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}([580.175860002369, 0.5716958903006855], [561.1493266049126, 0.63425586409754], [13.752784048149614, -0.04438161928830228], [12.706119077145445, -0.04103540144159791], [12.189291972809812, -0.03949298116723981], [10.572850949194152, -0.03464626903954164], [10.576144718235637, -0.03470942411134387], [9.600671766290475, -0.03180388122590169], [7.88008557059758, -0.026807295531296974], [6.830383351432274, -0.02370709067020727], [0.014412018463275344, -5.470217292907539e-5], [578.50238990071, 0.5774604954771928], [0.024840732984794493, -0.08611045725140473], OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}(0.16666666666666666, 0.0625, 0.1875, 0.25, -0.75, -0.75, 3.75, -3.0, 0.5, 0.26895043731778423, -0.7084548104956269, 0.8658892128279884, 0.15462307371928363, 0.06184922948771345, -0.02947695035460993, 0.18500664893617022, 0.4802345261121857, -0.5337849069148937, -0.013090093085106383, 0.7861107753062541, 0.08783068783068783, 0.3006060606060606, 0.22777777777777777, 0.027777777777777776, 0.06218596218596219, 0.2938217338217338, 0.16666666666666666, 0.25, 0.5, 0.5, 0.6428571428571429, 0.875, -0.19894179894179895, 0.9115151515151515, -1.9777777777777779, -0.1111111111111111, 1.67013727013727, -0.2938217338217338, 1.892063492063492, -6.067155067155067, 7.282458282458283, -4.0195360195360195, -7.214545454545455, 20.676923076923078, -20.31142191142191, 7.14965034965035, 7.866666666666666, -18.78205128205128, 13.508547008547009, -2.3653846153846154, 2.0, -5.294871794871795, 4.534188034188034, -1.2115384615384615, -1.4924630924630924, 1.5785667324128863, 1.1958838881915805, -1.219801565955412, -7.051721611721612, 16.273203719357564, -11.978886071193763, 3.0512256973795435, 4.0, -8.384615384615385, 5.769230769230769, -1.3846153846153846))), true, 0, DiffEqBase.DEStats
Number of function 1 evaluations: 360
Number of function 2 evaluations: 0
Number of W matrix evaluations: 0
Number of linear solves: 0
Number of Jacobians created: 0
Number of nonlinear solver iterations: 0
Number of nonlinear solver convergence failures: 0
Number of rootfind condition calls: 0
Number of accepted steps: 29
Number of rejected steps: 22, :Success), SciMLBase.ODESolution{Float64, 2, Vector{Vector{Float64}}, Nothing, Nothing, Vector{Float64}, Vector{Vector{Vector{Float64}}}, SciMLBase.ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Any}, SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}, SciMLBase.StandardODEProblem}, OwrenZen5, OrdinaryDiffEq.InterpolationData{SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}}, DiffEqBase.DEStats}([[0.0, 0.0], [0.08036770851061478, 0.00980244154799904], [0.8840262224354364, 0.10782232684426611], [8.918753954756268, 1.0875681614346162], [36.999518174347244, 4.508467095161535], [52.33091991242127, 6.374063999338755], [58.81947686585102, 7.163168343026875], [59.98999209252361, 7.305491526870946], [60.54401773902316, 7.327167896044106], [60.78336590674299, 7.334525644468636] … [469.91579641584644, 2.11254186537435], [503.2359610255594, 1.8335967951737626], [536.6058502505356, 1.5916149732520797], [569.9775952020642, 1.3816692834740107], [603.1979901726918, 1.1997201873883818], [636.039015000472, 1.042157286543399], [668.0982419055304, 0.9060413851266205], [698.6769695090934, 0.7891662446270232], [726.4233978028291, 0.6907102397075681], [747.1111897111397, 0.6179497677878985]], nothing, nothing, [0.0, 9.999999999999999e-5, 0.0010999999999999998, 0.011099999999999997, 0.04608233309856543, 0.06520361608459696, 0.07330077946319441, 0.07476177730611676, 0.07545446772268995, 0.0757544580703042 … 2.106207372140701, 2.5489957951813196, 3.076750145094716, 3.7068773144393017, 4.459814578394186, 5.361116788539318, 6.442245972154582, 7.743531246919073, 9.320929530095485, 11.18], [[[0.0, 0.0]], [[803.6787733693504, 98.02482731487422], [803.6782106155406, 98.02469003657959], [803.6779292384878, 98.02462139743224], [803.6770851067406, 98.02441547999082], [803.6770851067406, 98.02441547999082], [803.6766027453409, 98.02429781288059], [803.675818907452, 98.0241066038273], [803.6753968405799, 98.02400364510632]], [[803.6753968405799, 98.02400364510632], [803.669769261105, 98.02263086215994], [803.66695545659, 98.02194447068672], [803.6585139839341, 98.01988529626712], [803.6585139839341, 98.01988529626712], [803.6536902454632, 98.01870862517012], [803.6458516086958, 98.01679653463765], [803.6416307726137, 98.01576694742779]], [[803.6416307726137, 98.01576694742779], [803.58535083972, 98.00203911796248], [803.557209395119, 97.9951752032314], [803.4727791474185, 97.97458345903502], [803.4727791474185, 97.97458345903502], [803.4245293079745, 97.9628167480662], [803.3461171381136, 97.9436958427404], [803.3038920302076, 97.93339997064113]], [[803.3038920302076, 97.93339997064113], [803.1069116642334, 97.88537682033831], [803.0084033612914, 97.86136524518633], [802.7128059192869, 97.78933051973047], [802.7128059192869, 97.78933051973047], [802.5438442121365, 97.74816781946996], [802.2692055437258, 97.68127843154669], [802.1212842349606, 97.64526106881868]], [[802.1212842349606, 97.64526106881868], [802.0134623379837, 97.61901169762172], [801.9595459533288, 97.60588701202322], [801.7977750459249, 97.56651295522767], [801.7977750459249, 97.56651295522767], [801.7053198715024, 97.54401349420166], [801.5550574682846, 97.50745187003436], [801.4741352747752, 97.48776484163666]], [[801.4741352747752, 97.48776484163666], [801.4284415500889, 97.47664919383604], [801.4055937107514, 97.47109136993573], [801.3370462840937, 97.45441789823492], [801.3370462840937, 97.45441789823492], [801.2978736932214, 97.44489020012014], [801.2342141483763, 97.42940769068363], [801.1999338368564, 97.42107095483323]], [[801.1999338368564, 97.42107095483323], [801.1916865387079, 97.41906532190967], [801.1875628577977, 97.41806250544796], [801.1751916877182, 97.41505405606266], [801.1751916877182, 97.41505405606266], [801.1681223619048, 97.41333494212817], [801.1566345744156, 97.41054138198473], [801.1504487744614, 97.40903715729209]], [[801.1504487744614, 97.40903715729209], [800.7394476499769, 25.10335399737285], [800.5096165294475, 25.10554966772402], [799.8206477169527, 24.86535690599706], [799.8204807237645, 25.359814624870808], [799.4274973489482, 24.772035753223776], [798.7894405924369, 24.783532431145545], [798.4463624301756, 24.65255667739642]], [[798.4463624301756, 24.65255667739642], [798.2483610526788, 24.610479175986754], [798.149435661869, 24.589482416794766], [797.8527414437075, 24.526533662057957], [797.8527416053035, 24.5265338728734], [797.6833062326737, 24.490619237549282], [797.4081357002492, 24.432345449787178], [797.2600497625308, 24.401011832225308]] … [[97.53664409541709, -1.0114152189305134], [94.54151459391868, -0.9545457714627279], [93.17258500089105, -0.9302505531996883], [89.17633457205214, -0.858087586391048], [89.2071818049789, -0.8605286652260706], [87.04636323568589, -0.8208767989647054], [83.79962333342766, -0.7659868561327903], [82.14465789787408, -0.738374387001616]], [[82.14465789787408, -0.738374387001616], [79.61018341536895, -0.6965326349008785], [78.45002057852444, -0.678659911813724], [75.06321879748545, -0.6256441589506646], [75.08822385988343, -0.6274044517262234], [73.25637734648504, -0.5983277531031077], [70.49971807171404, -0.5580566852536634], [69.0936682133708, -0.537816676722618]], [[69.0936682133708, -0.537816676722618], [66.94125242466271, -0.507192405446977], [65.95427925343769, -0.49410566074857554], [63.07290447072744, -0.45533577755209365], [63.093131186348785, -0.4565905130002091], [61.533991084022624, -0.4353668683726429], [59.183577578685764, -0.40593359428574943], [57.983774739719934, -0.3911514556796634]], [[57.983774739719934, -0.3911514556796634], [56.14290236930333, -0.36875722302470015], [55.29726041936174, -0.3591826913686658], [52.82816850935914, -0.33085290701011555], [52.84459710402018, -0.33174486207686776], [51.50779143779337, -0.3162655575385767], [49.488636761868925, -0.29476690793686894], [48.45690812262996, -0.28397725322124345]], [[48.45690812262996, -0.28397725322124345], [46.8715721195563, -0.2676259927593464], [46.14170777220305, -0.26062946662102054], [44.00986146964108, -0.23995348536423897], [44.023174701892465, -0.2405827118176112], [42.86784681234456, -0.22930779693929979], [41.11837778536207, -0.21361603392590492], [40.22311510433781, -0.2057452895895932]], [[40.22311510433781, -0.2057452895895932], [38.84342503265327, -0.193799616410734], [38.20640221307067, -0.18868254104019955], [36.344060388784236, -0.1735791024467128], [36.35482175057128, -0.17401993381805506], [35.34376962898223, -0.16580066021875106], [33.807215671118016, -0.1543291506651314], [33.01895749653353, -0.14857711518682862]], [[33.01895749653353, -0.14857711518682862], [31.79917258524955, -0.13982889415284896], [31.23357874290183, -0.13607471846857083], [29.57659593105183, -0.12500439573257824], [29.58523518693531, -0.1253099173080358], [28.682492781305665, -0.11929646179938319], [27.30238076053091, -0.11086474561853948], [26.591078414828658, -0.10663438543749558]], [[26.591078414828658, -0.10663438543749558], [25.482063479481653, -0.10017128295799026], [24.964174413352385, -0.09738783215771157], [23.43939149377477, -0.08917616003283002], [23.446256513030242, -0.0893849367938098], [22.6090872878902, -0.08492468895525257], [21.314779177657627, -0.07861102088663707], [20.64102326597665, -0.07542964355241472]], [[20.64102326597665, -0.07542964355241472], [19.573097102048735, -0.0705082776525808], [19.067386344201605, -0.06836817092270747], [17.55869729866369, -0.06200762173477855], [17.564099574114806, -0.06214812296163], [16.719089184411384, -0.058658703974845156], [15.377496626769037, -0.05357581560876886], [14.660153552835247, -0.05095435443877107]], [[14.660153552835247, -0.05095435443877107], [13.523734799560911, -0.046899229249339244], [12.964624244088816, -0.04505196667387745], [11.218219773591564, -0.039281120377892276], [11.22223273992484, -0.03936658029274125], [10.17019498000164, -0.03593339847253327], [8.317086452164471, -0.030101268291913202], [7.1855563961949125, -0.026502303954291675]]], SciMLBase.ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Any}, SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}, SciMLBase.StandardODEProblem}(SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}(GasChromatographySimulator.odesystem_r!, LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, SciMLBase.DEFAULT_OBSERVED, nothing), [0.0, 0.0], (0.0, 11.18), Any[GasChromatographySimulator.Column(11.18, 0.000104, [0.000104], 1.04e-7, [1.04e-7], "FS5ms", "H2"), GasChromatographySimulator.Program{GasChromatographySimulator.var"#gf#5"{Matrix{Float64}}}([0.0, 60.0, 1680.0, 60.0, 360.0, 60.0], [40.0, 40.0, 180.0, 180.0, 300.0, 300.0], [411564.0, 411564.0, 411564.0, 411564.0, 411564.0, 411564.0], [101300.0, 101300.0, 101300.0, 101300.0, 101300.0, 101300.0], GasChromatographySimulator.var"#gf#5"{Matrix{Float64}}([0.0 0.0 11.18 0.0; 0.0 0.0 11.18 0.0; … ; 0.0 0.0 11.18 0.0; 0.0 0.0 11.18 0.0]), [0.0 0.0 11.18 0.0; 0.0 0.0 11.18 0.0; … ; 0.0 0.0 11.18 0.0; 0.0 0.0 11.18 0.0], 11181×6 extrapolate(interpolate((0.0:0.001:11.18,::Vector{Float64}), ::Matrix{Float64}, Gridded(Linear())), Flat()) with element type Float64:
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
⋮ ⋮
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15, 6-element extrapolate(interpolate((::Vector{Float64},), ::Vector{Float64}, Gridded(Linear())), Flat()) with element type Float64:
411564.0
411564.0
411564.0
411564.0
411564.0
411564.0, 6-element extrapolate(interpolate((::Vector{Float64},), ::Vector{Float64}, Gridded(Linear())), Flat()) with element type Float64:
101300.0
101300.0
101300.0
101300.0
101300.0
101300.0), GasChromatographySimulator.Substance("C13", "629-50-5", 444.46999999999997, 35.93, 125.62, 0.001, "Leppert2020b, alkane, alkanes", 0.00010393999972322901, 0.0, 0.0), GasChromatographySimulator.Options(OwrenZen5(), 1.0e-6, 0.001, "inlet", true, true, "Blumberg", "Pressure")], Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}(), SciMLBase.StandardODEProblem()), OwrenZen5(), OrdinaryDiffEq.InterpolationData{SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}}(SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}(GasChromatographySimulator.odesystem_r!, LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, SciMLBase.DEFAULT_OBSERVED, nothing), [[0.0, 0.0], [0.08036770851061478, 0.00980244154799904], [0.8840262224354364, 0.10782232684426611], [8.918753954756268, 1.0875681614346162], [36.999518174347244, 4.508467095161535], [52.33091991242127, 6.374063999338755], [58.81947686585102, 7.163168343026875], [59.98999209252361, 7.305491526870946], [60.54401773902316, 7.327167896044106], [60.78336590674299, 7.334525644468636] … [469.91579641584644, 2.11254186537435], [503.2359610255594, 1.8335967951737626], [536.6058502505356, 1.5916149732520797], [569.9775952020642, 1.3816692834740107], [603.1979901726918, 1.1997201873883818], [636.039015000472, 1.042157286543399], [668.0982419055304, 0.9060413851266205], [698.6769695090934, 0.7891662446270232], [726.4233978028291, 0.6907102397075681], [747.1111897111397, 0.6179497677878985]], [0.0, 9.999999999999999e-5, 0.0010999999999999998, 0.011099999999999997, 0.04608233309856543, 0.06520361608459696, 0.07330077946319441, 0.07476177730611676, 0.07545446772268995, 0.0757544580703042 … 2.106207372140701, 2.5489957951813196, 3.076750145094716, 3.7068773144393017, 4.459814578394186, 5.361116788539318, 6.442245972154582, 7.743531246919073, 9.320929530095485, 11.18], [[[0.0, 0.0]], [[803.6787733693504, 98.02482731487422], [803.6782106155406, 98.02469003657959], [803.6779292384878, 98.02462139743224], [803.6770851067406, 98.02441547999082], [803.6770851067406, 98.02441547999082], [803.6766027453409, 98.02429781288059], [803.675818907452, 98.0241066038273], [803.6753968405799, 98.02400364510632]], [[803.6753968405799, 98.02400364510632], [803.669769261105, 98.02263086215994], [803.66695545659, 98.02194447068672], [803.6585139839341, 98.01988529626712], [803.6585139839341, 98.01988529626712], [803.6536902454632, 98.01870862517012], [803.6458516086958, 98.01679653463765], [803.6416307726137, 98.01576694742779]], [[803.6416307726137, 98.01576694742779], [803.58535083972, 98.00203911796248], [803.557209395119, 97.9951752032314], [803.4727791474185, 97.97458345903502], [803.4727791474185, 97.97458345903502], [803.4245293079745, 97.9628167480662], [803.3461171381136, 97.9436958427404], [803.3038920302076, 97.93339997064113]], [[803.3038920302076, 97.93339997064113], [803.1069116642334, 97.88537682033831], [803.0084033612914, 97.86136524518633], [802.7128059192869, 97.78933051973047], [802.7128059192869, 97.78933051973047], [802.5438442121365, 97.74816781946996], [802.2692055437258, 97.68127843154669], [802.1212842349606, 97.64526106881868]], [[802.1212842349606, 97.64526106881868], [802.0134623379837, 97.61901169762172], [801.9595459533288, 97.60588701202322], [801.7977750459249, 97.56651295522767], [801.7977750459249, 97.56651295522767], [801.7053198715024, 97.54401349420166], [801.5550574682846, 97.50745187003436], [801.4741352747752, 97.48776484163666]], [[801.4741352747752, 97.48776484163666], [801.4284415500889, 97.47664919383604], [801.4055937107514, 97.47109136993573], [801.3370462840937, 97.45441789823492], [801.3370462840937, 97.45441789823492], [801.2978736932214, 97.44489020012014], [801.2342141483763, 97.42940769068363], [801.1999338368564, 97.42107095483323]], [[801.1999338368564, 97.42107095483323], [801.1916865387079, 97.41906532190967], [801.1875628577977, 97.41806250544796], [801.1751916877182, 97.41505405606266], [801.1751916877182, 97.41505405606266], [801.1681223619048, 97.41333494212817], [801.1566345744156, 97.41054138198473], [801.1504487744614, 97.40903715729209]], [[801.1504487744614, 97.40903715729209], [800.7394476499769, 25.10335399737285], [800.5096165294475, 25.10554966772402], [799.8206477169527, 24.86535690599706], [799.8204807237645, 25.359814624870808], [799.4274973489482, 24.772035753223776], [798.7894405924369, 24.783532431145545], [798.4463624301756, 24.65255667739642]], [[798.4463624301756, 24.65255667739642], [798.2483610526788, 24.610479175986754], [798.149435661869, 24.589482416794766], [797.8527414437075, 24.526533662057957], [797.8527416053035, 24.5265338728734], [797.6833062326737, 24.490619237549282], [797.4081357002492, 24.432345449787178], [797.2600497625308, 24.401011832225308]] … [[97.53664409541709, -1.0114152189305134], [94.54151459391868, -0.9545457714627279], [93.17258500089105, -0.9302505531996883], [89.17633457205214, -0.858087586391048], [89.2071818049789, -0.8605286652260706], [87.04636323568589, -0.8208767989647054], [83.79962333342766, -0.7659868561327903], [82.14465789787408, -0.738374387001616]], [[82.14465789787408, -0.738374387001616], [79.61018341536895, -0.6965326349008785], [78.45002057852444, -0.678659911813724], [75.06321879748545, -0.6256441589506646], [75.08822385988343, -0.6274044517262234], [73.25637734648504, -0.5983277531031077], [70.49971807171404, -0.5580566852536634], [69.0936682133708, -0.537816676722618]], [[69.0936682133708, -0.537816676722618], [66.94125242466271, -0.507192405446977], [65.95427925343769, -0.49410566074857554], [63.07290447072744, -0.45533577755209365], [63.093131186348785, -0.4565905130002091], [61.533991084022624, -0.4353668683726429], [59.183577578685764, -0.40593359428574943], [57.983774739719934, -0.3911514556796634]], [[57.983774739719934, -0.3911514556796634], [56.14290236930333, -0.36875722302470015], [55.29726041936174, -0.3591826913686658], [52.82816850935914, -0.33085290701011555], [52.84459710402018, -0.33174486207686776], [51.50779143779337, -0.3162655575385767], [49.488636761868925, -0.29476690793686894], [48.45690812262996, -0.28397725322124345]], [[48.45690812262996, -0.28397725322124345], [46.8715721195563, -0.2676259927593464], [46.14170777220305, -0.26062946662102054], [44.00986146964108, -0.23995348536423897], [44.023174701892465, -0.2405827118176112], [42.86784681234456, -0.22930779693929979], [41.11837778536207, -0.21361603392590492], [40.22311510433781, -0.2057452895895932]], [[40.22311510433781, -0.2057452895895932], [38.84342503265327, -0.193799616410734], [38.20640221307067, -0.18868254104019955], [36.344060388784236, -0.1735791024467128], [36.35482175057128, -0.17401993381805506], [35.34376962898223, -0.16580066021875106], [33.807215671118016, -0.1543291506651314], [33.01895749653353, -0.14857711518682862]], [[33.01895749653353, -0.14857711518682862], [31.79917258524955, -0.13982889415284896], [31.23357874290183, -0.13607471846857083], [29.57659593105183, -0.12500439573257824], [29.58523518693531, -0.1253099173080358], [28.682492781305665, -0.11929646179938319], [27.30238076053091, -0.11086474561853948], [26.591078414828658, -0.10663438543749558]], [[26.591078414828658, -0.10663438543749558], [25.482063479481653, -0.10017128295799026], [24.964174413352385, -0.09738783215771157], [23.43939149377477, -0.08917616003283002], [23.446256513030242, -0.0893849367938098], [22.6090872878902, -0.08492468895525257], [21.314779177657627, -0.07861102088663707], [20.64102326597665, -0.07542964355241472]], [[20.64102326597665, -0.07542964355241472], [19.573097102048735, -0.0705082776525808], [19.067386344201605, -0.06836817092270747], [17.55869729866369, -0.06200762173477855], [17.564099574114806, -0.06214812296163], [16.719089184411384, -0.058658703974845156], [15.377496626769037, -0.05357581560876886], [14.660153552835247, -0.05095435443877107]], [[14.660153552835247, -0.05095435443877107], [13.523734799560911, -0.046899229249339244], [12.964624244088816, -0.04505196667387745], [11.218219773591564, -0.039281120377892276], [11.22223273992484, -0.03936658029274125], [10.17019498000164, -0.03593339847253327], [8.317086452164471, -0.030101268291913202], [7.1855563961949125, -0.026502303954291675]]], true, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}([747.1111897111397, 0.6179497677878985], [726.4233978028291, 0.6907102397075681], [14.660153552835247, -0.05095435443877107], [13.523734799560911, -0.046899229249339244], [12.964624244088816, -0.04505196667387745], [11.218219773591564, -0.039281120377892276], [11.22223273992484, -0.03936658029274125], [10.17019498000164, -0.03593339847253327], [8.317086452164471, -0.030101268291913202], [7.1855563961949125, -0.026502303954291675], [0.016275245906806853, -6.415473378013062e-5], [745.3037230189085, 0.6245740857112563], [0.021784206081685596, -0.09274798911066157], OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}(0.16666666666666666, 0.0625, 0.1875, 0.25, -0.75, -0.75, 3.75, -3.0, 0.5, 0.26895043731778423, -0.7084548104956269, 0.8658892128279884, 0.15462307371928363, 0.06184922948771345, -0.02947695035460993, 0.18500664893617022, 0.4802345261121857, -0.5337849069148937, -0.013090093085106383, 0.7861107753062541, 0.08783068783068783, 0.3006060606060606, 0.22777777777777777, 0.027777777777777776, 0.06218596218596219, 0.2938217338217338, 0.16666666666666666, 0.25, 0.5, 0.5, 0.6428571428571429, 0.875, -0.19894179894179895, 0.9115151515151515, -1.9777777777777779, -0.1111111111111111, 1.67013727013727, -0.2938217338217338, 1.892063492063492, -6.067155067155067, 7.282458282458283, -4.0195360195360195, -7.214545454545455, 20.676923076923078, -20.31142191142191, 7.14965034965035, 7.866666666666666, -18.78205128205128, 13.508547008547009, -2.3653846153846154, 2.0, -5.294871794871795, 4.534188034188034, -1.2115384615384615, -1.4924630924630924, 1.5785667324128863, 1.1958838881915805, -1.219801565955412, -7.051721611721612, 16.273203719357564, -11.978886071193763, 3.0512256973795435, 4.0, -8.384615384615385, 5.769230769230769, -1.3846153846153846))), true, 0, DiffEqBase.DEStats
Number of function 1 evaluations: 437
Number of function 2 evaluations: 0
Number of W matrix evaluations: 0
Number of linear solves: 0
Number of Jacobians created: 0
Number of nonlinear solver iterations: 0
Number of nonlinear solver convergence failures: 0
Number of rootfind condition calls: 0
Number of accepted steps: 36
Number of rejected steps: 26, :Success), SciMLBase.ODESolution{Float64, 2, Vector{Vector{Float64}}, Nothing, Nothing, Vector{Float64}, Vector{Vector{Vector{Float64}}}, SciMLBase.ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Any}, SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}, SciMLBase.StandardODEProblem}, OwrenZen5, OrdinaryDiffEq.InterpolationData{SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}}, DiffEqBase.DEStats}([[0.0, 0.0], [0.20167300074609165, 0.063653972258059], [2.2183564060836614, 0.700164277250428], [22.380529522428837, 7.0623255683517705], [53.26591100077479, 16.80299962726043], [58.26734819909565, 18.379768576596092], [59.97627437388596, 18.918492269623027], [60.478128322693294, 18.961919396327648], [60.6958463322554, 18.97573744337489], [62.8559419051708, 19.105498082984575] … [640.5437390811994, 2.097547649154452], [673.8007068641675, 1.8191532328244597], [707.2468127805414, 1.578198264210008], [740.7623889011894, 1.3696378196995223], [774.1530889637656, 1.189176012880195], [807.1091600375646, 1.0331921318716113], [839.1147897892652, 0.8987905495776332], [869.251768572074, 0.7840545054512479], [895.6602989142884, 0.6891490964325981], [907.1189845962977, 0.6474308598301796]], nothing, nothing, [0.0, 9.999999999999999e-5, 0.0010999999999999998, 0.011099999999999997, 0.02642663918001458, 0.02890949540190982, 0.029757914658447546, 0.030007450181802252, 0.03011596228847866, 0.031201083355242767 … 2.3883116000803444, 2.855850777225353, 3.4135531477732344, 4.079552195000623, 4.875925340753915, 5.8298986658280025, 6.975534971092545, 8.357136982666773, 10.04274261170167, 11.18], [[[0.0, 0.0]], [[2016.7342439523236, 636.5423969067945], [2016.7328317900065, 636.5415054647273], [2016.732125708476, 636.5410597436933], [2016.7300074623895, 636.5397225805834], [2016.7300074623895, 636.5397225805834], [2016.7287970350778, 636.5389584873918], [2016.7268300891233, 636.5377168359406], [2016.725770963584, 636.5370482543901]], [[2016.725770963584, 636.5370482543901], [2016.7116492365783, 636.5281338337168], [2016.7045883359926, 636.5236766233796], [2016.6834054859057, 636.5103049923692], [2016.6834054859057, 636.5103049923692], [2016.6713009002426, 636.5026640603631], [2016.6516307935797, 636.4902475458534], [2016.641039118215, 636.4835617303479]], [[2016.641039118215, 636.4835617303479], [2016.4998114640002, 636.3944175236112], [2016.4291939276143, 636.3498454202338], [2016.2173264783373, 636.2161291101373], [2016.2173264783373, 636.2161291101373], [2016.0962493680524, 636.1397197900772], [2015.8994835539784, 636.0155546449789], [2015.7935247755545, 635.9486964899172]], [[2015.7935247755545, 635.9486964899172], [2015.576975191105, 635.812068380762], [2015.4686916737826, 635.7437543261797], [2015.143806210203, 635.5388121624327], [2015.143806210203, 635.5388121624327], [2014.9581338547484, 635.4217023545774], [2014.6563797810581, 635.2313989168127], [2014.493878096326, 635.128927834939]], [[2014.493878096326, 635.128927834939], [2014.458776849609, 635.1067946101049], [2014.441225996888, 635.0957279976877], [2014.3885725212288, 635.062528160436], [2014.3885725212288, 635.062528160436], [2014.3584842029156, 635.0435568248638], [2014.3095897270905, 635.0127284045591], [2014.2832614408171, 634.9961284859336]], [[2014.2832614408171, 634.9961284859336], [2014.271265773694, 634.988565319773], [2014.2652679133435, 634.984783736693], [2014.2472742251314, 634.9734389874523], [2014.2472742251314, 634.9734389874523], [2014.2369920454116, 634.9669562736005], [2014.2202833914191, 634.9564218635913], [2014.211286366474, 634.9507494889708]], [[2014.211286366474, 634.9507494889708], [2013.4091932490464, 130.6142629255532], [2012.8510826880438, 130.6800138882537], [2011.178298433632, 129.2056819830621], [2011.1772548671079, 132.5543847034943], [2010.2236422744572, 128.6603846843272], [2008.6740134388629, 128.8786803207165], [2007.8409282750245, 128.06697522091326]], [[2007.8409282750245, 128.06697522091326], [2007.3581023210077, 127.8244475428379], [2007.1168676968755, 127.70342297323663], [2006.3933560357, 127.34058667049874], [2006.3933564102483, 127.34058784520266], [2005.980167099297, 127.133572767322], [2005.3091167472128, 126.79767236610553], [2004.9479774288784, 126.61705723464206]], [[2004.9479774288784, 126.61705723464206], [2000.1400889435163, 124.2179233323281], [1997.753825538712, 123.04190506791952], [1990.6136664269322, 119.5360943234686], [1990.6140375286375, 119.53725613428037], [1986.5576682702747, 117.56360817270382], [1980.003683809619, 114.40528565693461], [1976.4933620454233, 112.72810834758855]] … [[91.4953312529707, -0.9624089461513261], [88.78546864889248, -0.9073773714937867], [87.54160078917057, -0.883861841440045], [83.90751912901892, -0.8142526184850452], [83.9327778720471, -0.8164953727579891], [81.9646748260533, -0.7784183918550001], [78.99503118842726, -0.7256268561413203], [77.47825578488944, -0.6991254730620279]], [[77.47825578488944, -0.6991254730620279], [75.1537545256588, -0.659060264259297], [74.08571131142422, -0.6419326524390331], [70.96560615393196, -0.5912710462542737], [70.98658262442322, -0.5928735711667203], [69.2965852276502, -0.5651937501567258], [66.74401874571055, -0.5267766513331544], [65.43972239513067, -0.5074993627073973]], [[65.43972239513067, -0.5074993627073973], [63.43882447714433, -0.4783409877334973], [62.518374511294724, -0.46586935745633523], [59.82950819347442, -0.4290101246861832], [59.8468944502554, -0.4301510528669386], [58.39007036488661, -0.4100387014596948], [56.18692177266777, -0.38208866670833036], [55.06048590926702, -0.36806974285067223]], [[55.06048590926702, -0.36806974285067223], [53.32982232472355, -0.34684688261256236], [52.53249037838102, -0.33776356440208366], [50.20298586762637, -0.3109427143150873], [50.21735637511593, -0.3117516144341548], [48.95454973343927, -0.2971382467783431], [47.041576680739176, -0.27679790395220033], [46.06257179452533, -0.2666002554817953]], [[46.06257179452533, -0.2666002554817953], [44.55540152600934, -0.25114566793385273], [43.85961478381969, -0.2445254379936359], [41.82583764284928, -0.22499671186005862], [41.837659257317966, -0.225566719857292], [40.73397494326923, -0.21494400380807185], [39.057873919888856, -0.20012672180730634], [38.1986998010175, -0.19270070087289076]], [[38.1986998010175, -0.19270070087289076], [36.87193700893277, -0.18142761350618086], [36.2575938708226, -0.17659245610791588], [34.459718453814574, -0.16234302037374915], [34.469377025892676, -0.1627413526717534], [33.49157885185383, -0.15500368141648754], [32.00068395449234, -0.1441762372076466], [31.23416487921308, -0.13874965721352606]], [[31.23416487921308, -0.13874965721352606], [30.04448914026921, -0.13048807718415406], [29.490952334518077, -0.12693670800244305], [27.8663809590052, -0.11647544684605132], [27.87419361041466, -0.11675051801503174], [26.98654900485639, -0.11107681315392734], [25.62336860078709, -0.10309200146135492], [24.918290623857587, -0.09908388301819357]], [[24.918290623857587, -0.09908388301819357], [23.813358932381853, -0.09294300003660685], [23.2947253747749, -0.09029005363998407], [21.76180517189295, -0.08245911598641285], [21.768040241275465, -0.0826460378355861], [20.92139244137227, -0.07838976931462928], [19.601686636639062, -0.07231763007864167], [18.909513783095306, -0.06924445907604396]], [[18.909513783095306, -0.06924445907604396], [17.797129228527144, -0.06443396560590635], [17.264910797140466, -0.06232276470277357], [15.65927497285462, -0.05599288114022659], [15.664261452919618, -0.05611899348154771], [14.749445591684362, -0.05259888941050287], [13.263665052660775, -0.04731900234803437], [12.448998005165429, -0.04451533184358608]], [[12.448998005165429, -0.04451533184358608], [11.698297168991473, -0.041970490083079806], [11.32012239245465, -0.040735191080551535], [10.136247133405096, -0.036852585187322616], [10.137024722258433, -0.03686865406059994], [9.423056012506807, -0.03453766556321298], [8.178563482492823, -0.030501664937160586], [7.4454965824389285, -0.028101608277525694]]], SciMLBase.ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Any}, SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}, SciMLBase.StandardODEProblem}(SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}(GasChromatographySimulator.odesystem_r!, LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, SciMLBase.DEFAULT_OBSERVED, nothing), [0.0, 0.0], (0.0, 11.18), Any[GasChromatographySimulator.Column(11.18, 0.000104, [0.000104], 1.04e-7, [1.04e-7], "FS5ms", "H2"), GasChromatographySimulator.Program{GasChromatographySimulator.var"#gf#5"{Matrix{Float64}}}([0.0, 60.0, 1680.0, 60.0, 360.0, 60.0], [40.0, 40.0, 180.0, 180.0, 300.0, 300.0], [411564.0, 411564.0, 411564.0, 411564.0, 411564.0, 411564.0], [101300.0, 101300.0, 101300.0, 101300.0, 101300.0, 101300.0], GasChromatographySimulator.var"#gf#5"{Matrix{Float64}}([0.0 0.0 11.18 0.0; 0.0 0.0 11.18 0.0; … ; 0.0 0.0 11.18 0.0; 0.0 0.0 11.18 0.0]), [0.0 0.0 11.18 0.0; 0.0 0.0 11.18 0.0; … ; 0.0 0.0 11.18 0.0; 0.0 0.0 11.18 0.0], 11181×6 extrapolate(interpolate((0.0:0.001:11.18,::Vector{Float64}), ::Matrix{Float64}, Gridded(Linear())), Flat()) with element type Float64:
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
⋮ ⋮
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15, 6-element extrapolate(interpolate((::Vector{Float64},), ::Vector{Float64}, Gridded(Linear())), Flat()) with element type Float64:
411564.0
411564.0
411564.0
411564.0
411564.0
411564.0, 6-element extrapolate(interpolate((::Vector{Float64},), ::Vector{Float64}, Gridded(Linear())), Flat()) with element type Float64:
101300.0
101300.0
101300.0
101300.0
101300.0
101300.0), GasChromatographySimulator.Substance("C14", "629-59-4", 459.98, 36.76, 126.76, 0.001, "Leppert2020b, alkane, alkanes", 0.00010002700149772162, 0.0, 0.0), GasChromatographySimulator.Options(OwrenZen5(), 1.0e-6, 0.001, "inlet", true, true, "Blumberg", "Pressure")], Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}(), SciMLBase.StandardODEProblem()), OwrenZen5(), OrdinaryDiffEq.InterpolationData{SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}}(SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}(GasChromatographySimulator.odesystem_r!, LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, SciMLBase.DEFAULT_OBSERVED, nothing), [[0.0, 0.0], [0.20167300074609165, 0.063653972258059], [2.2183564060836614, 0.700164277250428], [22.380529522428837, 7.0623255683517705], [53.26591100077479, 16.80299962726043], [58.26734819909565, 18.379768576596092], [59.97627437388596, 18.918492269623027], [60.478128322693294, 18.961919396327648], [60.6958463322554, 18.97573744337489], [62.8559419051708, 19.105498082984575] … [640.5437390811994, 2.097547649154452], [673.8007068641675, 1.8191532328244597], [707.2468127805414, 1.578198264210008], [740.7623889011894, 1.3696378196995223], [774.1530889637656, 1.189176012880195], [807.1091600375646, 1.0331921318716113], [839.1147897892652, 0.8987905495776332], [869.251768572074, 0.7840545054512479], [895.6602989142884, 0.6891490964325981], [907.1189845962977, 0.6474308598301796]], [0.0, 9.999999999999999e-5, 0.0010999999999999998, 0.011099999999999997, 0.02642663918001458, 0.02890949540190982, 0.029757914658447546, 0.030007450181802252, 0.03011596228847866, 0.031201083355242767 … 2.3883116000803444, 2.855850777225353, 3.4135531477732344, 4.079552195000623, 4.875925340753915, 5.8298986658280025, 6.975534971092545, 8.357136982666773, 10.04274261170167, 11.18], [[[0.0, 0.0]], [[2016.7342439523236, 636.5423969067945], [2016.7328317900065, 636.5415054647273], [2016.732125708476, 636.5410597436933], [2016.7300074623895, 636.5397225805834], [2016.7300074623895, 636.5397225805834], [2016.7287970350778, 636.5389584873918], [2016.7268300891233, 636.5377168359406], [2016.725770963584, 636.5370482543901]], [[2016.725770963584, 636.5370482543901], [2016.7116492365783, 636.5281338337168], [2016.7045883359926, 636.5236766233796], [2016.6834054859057, 636.5103049923692], [2016.6834054859057, 636.5103049923692], [2016.6713009002426, 636.5026640603631], [2016.6516307935797, 636.4902475458534], [2016.641039118215, 636.4835617303479]], [[2016.641039118215, 636.4835617303479], [2016.4998114640002, 636.3944175236112], [2016.4291939276143, 636.3498454202338], [2016.2173264783373, 636.2161291101373], [2016.2173264783373, 636.2161291101373], [2016.0962493680524, 636.1397197900772], [2015.8994835539784, 636.0155546449789], [2015.7935247755545, 635.9486964899172]], [[2015.7935247755545, 635.9486964899172], [2015.576975191105, 635.812068380762], [2015.4686916737826, 635.7437543261797], [2015.143806210203, 635.5388121624327], [2015.143806210203, 635.5388121624327], [2014.9581338547484, 635.4217023545774], [2014.6563797810581, 635.2313989168127], [2014.493878096326, 635.128927834939]], [[2014.493878096326, 635.128927834939], [2014.458776849609, 635.1067946101049], [2014.441225996888, 635.0957279976877], [2014.3885725212288, 635.062528160436], [2014.3885725212288, 635.062528160436], [2014.3584842029156, 635.0435568248638], [2014.3095897270905, 635.0127284045591], [2014.2832614408171, 634.9961284859336]], [[2014.2832614408171, 634.9961284859336], [2014.271265773694, 634.988565319773], [2014.2652679133435, 634.984783736693], [2014.2472742251314, 634.9734389874523], [2014.2472742251314, 634.9734389874523], [2014.2369920454116, 634.9669562736005], [2014.2202833914191, 634.9564218635913], [2014.211286366474, 634.9507494889708]], [[2014.211286366474, 634.9507494889708], [2013.4091932490464, 130.6142629255532], [2012.8510826880438, 130.6800138882537], [2011.178298433632, 129.2056819830621], [2011.1772548671079, 132.5543847034943], [2010.2236422744572, 128.6603846843272], [2008.6740134388629, 128.8786803207165], [2007.8409282750245, 128.06697522091326]], [[2007.8409282750245, 128.06697522091326], [2007.3581023210077, 127.8244475428379], [2007.1168676968755, 127.70342297323663], [2006.3933560357, 127.34058667049874], [2006.3933564102483, 127.34058784520266], [2005.980167099297, 127.133572767322], [2005.3091167472128, 126.79767236610553], [2004.9479774288784, 126.61705723464206]], [[2004.9479774288784, 126.61705723464206], [2000.1400889435163, 124.2179233323281], [1997.753825538712, 123.04190506791952], [1990.6136664269322, 119.5360943234686], [1990.6140375286375, 119.53725613428037], [1986.5576682702747, 117.56360817270382], [1980.003683809619, 114.40528565693461], [1976.4933620454233, 112.72810834758855]] … [[91.4953312529707, -0.9624089461513261], [88.78546864889248, -0.9073773714937867], [87.54160078917057, -0.883861841440045], [83.90751912901892, -0.8142526184850452], [83.9327778720471, -0.8164953727579891], [81.9646748260533, -0.7784183918550001], [78.99503118842726, -0.7256268561413203], [77.47825578488944, -0.6991254730620279]], [[77.47825578488944, -0.6991254730620279], [75.1537545256588, -0.659060264259297], [74.08571131142422, -0.6419326524390331], [70.96560615393196, -0.5912710462542737], [70.98658262442322, -0.5928735711667203], [69.2965852276502, -0.5651937501567258], [66.74401874571055, -0.5267766513331544], [65.43972239513067, -0.5074993627073973]], [[65.43972239513067, -0.5074993627073973], [63.43882447714433, -0.4783409877334973], [62.518374511294724, -0.46586935745633523], [59.82950819347442, -0.4290101246861832], [59.8468944502554, -0.4301510528669386], [58.39007036488661, -0.4100387014596948], [56.18692177266777, -0.38208866670833036], [55.06048590926702, -0.36806974285067223]], [[55.06048590926702, -0.36806974285067223], [53.32982232472355, -0.34684688261256236], [52.53249037838102, -0.33776356440208366], [50.20298586762637, -0.3109427143150873], [50.21735637511593, -0.3117516144341548], [48.95454973343927, -0.2971382467783431], [47.041576680739176, -0.27679790395220033], [46.06257179452533, -0.2666002554817953]], [[46.06257179452533, -0.2666002554817953], [44.55540152600934, -0.25114566793385273], [43.85961478381969, -0.2445254379936359], [41.82583764284928, -0.22499671186005862], [41.837659257317966, -0.225566719857292], [40.73397494326923, -0.21494400380807185], [39.057873919888856, -0.20012672180730634], [38.1986998010175, -0.19270070087289076]], [[38.1986998010175, -0.19270070087289076], [36.87193700893277, -0.18142761350618086], [36.2575938708226, -0.17659245610791588], [34.459718453814574, -0.16234302037374915], [34.469377025892676, -0.1627413526717534], [33.49157885185383, -0.15500368141648754], [32.00068395449234, -0.1441762372076466], [31.23416487921308, -0.13874965721352606]], [[31.23416487921308, -0.13874965721352606], [30.04448914026921, -0.13048807718415406], [29.490952334518077, -0.12693670800244305], [27.8663809590052, -0.11647544684605132], [27.87419361041466, -0.11675051801503174], [26.98654900485639, -0.11107681315392734], [25.62336860078709, -0.10309200146135492], [24.918290623857587, -0.09908388301819357]], [[24.918290623857587, -0.09908388301819357], [23.813358932381853, -0.09294300003660685], [23.2947253747749, -0.09029005363998407], [21.76180517189295, -0.08245911598641285], [21.768040241275465, -0.0826460378355861], [20.92139244137227, -0.07838976931462928], [19.601686636639062, -0.07231763007864167], [18.909513783095306, -0.06924445907604396]], [[18.909513783095306, -0.06924445907604396], [17.797129228527144, -0.06443396560590635], [17.264910797140466, -0.06232276470277357], [15.65927497285462, -0.05599288114022659], [15.664261452919618, -0.05611899348154771], [14.749445591684362, -0.05259888941050287], [13.263665052660775, -0.04731900234803437], [12.448998005165429, -0.04451533184358608]], [[12.448998005165429, -0.04451533184358608], [11.698297168991473, -0.041970490083079806], [11.32012239245465, -0.040735191080551535], [10.136247133405096, -0.036852585187322616], [10.137024722258433, -0.03686865406059994], [9.423056012506807, -0.03453766556321298], [8.178563482492823, -0.030501664937160586], [7.4454965824389285, -0.028101608277525694]]], true, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}([907.1189845962977, 0.6474308598301796], [895.6602989142884, 0.6891490964325981], [12.448998005165429, -0.04451533184358608], [11.698297168991473, -0.041970490083079806], [11.32012239245465, -0.040735191080551535], [10.136247133405096, -0.036852585187322616], [10.137024722258433, -0.03686865406059994], [9.423056012506807, -0.03453766556321298], [8.178563482492823, -0.030501664937160586], [7.4454965824389285, -0.028101608277525694], [0.0034276383568229655, -1.436688355301928e-5], [906.0069681601369, 0.6516064651713324], [0.0037785942488615686, -0.02081707217655162], OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}(0.16666666666666666, 0.0625, 0.1875, 0.25, -0.75, -0.75, 3.75, -3.0, 0.5, 0.26895043731778423, -0.7084548104956269, 0.8658892128279884, 0.15462307371928363, 0.06184922948771345, -0.02947695035460993, 0.18500664893617022, 0.4802345261121857, -0.5337849069148937, -0.013090093085106383, 0.7861107753062541, 0.08783068783068783, 0.3006060606060606, 0.22777777777777777, 0.027777777777777776, 0.06218596218596219, 0.2938217338217338, 0.16666666666666666, 0.25, 0.5, 0.5, 0.6428571428571429, 0.875, -0.19894179894179895, 0.9115151515151515, -1.9777777777777779, -0.1111111111111111, 1.67013727013727, -0.2938217338217338, 1.892063492063492, -6.067155067155067, 7.282458282458283, -4.0195360195360195, -7.214545454545455, 20.676923076923078, -20.31142191142191, 7.14965034965035, 7.866666666666666, -18.78205128205128, 13.508547008547009, -2.3653846153846154, 2.0, -5.294871794871795, 4.534188034188034, -1.2115384615384615, -1.4924630924630924, 1.5785667324128863, 1.1958838881915805, -1.219801565955412, -7.051721611721612, 16.273203719357564, -11.978886071193763, 3.0512256973795435, 4.0, -8.384615384615385, 5.769230769230769, -1.3846153846153846))), true, 0, DiffEqBase.DEStats
Number of function 1 evaluations: 465
Number of function 2 evaluations: 0
Number of W matrix evaluations: 0
Number of linear solves: 0
Number of Jacobians created: 0
Number of nonlinear solver iterations: 0
Number of nonlinear solver convergence failures: 0
Number of rootfind condition calls: 0
Number of accepted steps: 41
Number of rejected steps: 25, :Success), SciMLBase.ODESolution{Float64, 2, Vector{Vector{Float64}}, Nothing, Nothing, Vector{Float64}, Vector{Vector{Vector{Float64}}}, SciMLBase.ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Any}, SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}, SciMLBase.StandardODEProblem}, OwrenZen5, OrdinaryDiffEq.InterpolationData{SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}}, DiffEqBase.DEStats}([[0.0, 0.0], [0.5118766854272803, 0.4219575619756654], [5.630525256437843, 4.641338174675174], [56.805180800932064, 46.81564359595516], [59.615807759047144, 49.13143747552918], [60.02721907677394, 49.47041209211274], [64.08188576665707, 49.91605812177886], [72.49442963807763, 50.48957592229632], [82.9002941253958, 50.643301853655736], [95.27754165053068, 50.19276577527522] … [779.0813321257494, 2.2604533714317525], [812.651455348656, 1.9600405936908976], [846.4977517608771, 1.700162907864467], [880.5064353658115, 1.4753155838233665], [914.5019585510814, 1.280789638371047], [948.2096971006372, 1.112602816651276], [981.1849899109388, 0.9674958600928868], [1012.6627035962109, 0.8430865570427569], [1041.1791037897399, 0.738552390690814], [1061.4025141274865, 0.6650853178014323]], nothing, nothing, [0.0, 9.999999999999999e-5, 0.0010999999999999998, 0.011099999999999997, 0.011649344257923317, 0.011729756721469595, 0.012533881356932368, 0.014277376254310326, 0.016581195024200013, 0.019547835138334132 … 2.2897888992674917, 2.7279576392312253, 3.2505077356979624, 3.8743074921087874, 4.619895315607754, 5.512478011968099, 6.583397667510214, 7.872689663721999, 9.436361436328305, 11.18], [[[0.0, 0.0]], [[5118.777607130979, 4219.5933476709215], [5118.774022848682, 4219.58743836616], [5118.772230706591, 4219.5844837137765], [5118.766854276601, 4219.575619756711], [5118.766854276631, 4219.57561975676], [5118.763782028287, 4219.570554638267], [5118.758789620914, 4219.562323820918], [5118.756101399543, 4219.557891842347]], [[5118.756101399543, 4219.557891842347], [5118.720258313036, 4219.498798794728], [5118.702336675659, 4219.469252270917], [5118.648571387048, 4219.380612699487], [5118.648571387048, 4219.380612699487], [5118.617848111424, 4219.32996151581], [5118.567922395269, 4219.247653342417], [5118.541039115565, 4219.203333556623]], [[5118.541039115565, 4219.203333556623], [5118.18258189391, 4218.612403080417], [5118.003343868406, 4218.316937842311], [5117.465592125278, 4217.430542128], [5117.465592125278, 4217.430542128], [5117.1582800425285, 4216.924030291252], [5116.6588585416785, 4216.100948556533], [5116.38991907984, 4215.657750699345]], [[5116.38991907984, 4215.657750699345], [5116.370219811, 4215.625288272984], [5116.360370148129, 4215.609057059787], [5116.330821045741, 4215.560363420196], [5116.330821045741, 4215.560363420196], [5116.313935767754, 4215.532538483288], [5116.28649707217, 4215.487322960811], [5116.271722328982, 4215.462976141015]], [[5116.271722328982, 4215.462976141015], [5116.268838707812, 4215.458224323476], [5116.267396896618, 4215.455848414709], [5116.263071460599, 4215.448720688402], [5116.263071460599, 4215.448720688402], [5116.2605997812325, 4215.444647701942], [5116.256583299713, 4215.438029098944], [5115.270622322609, 638.0445171232604]], [[5115.270622322609, 638.0445171232604], [5090.531941134906, 608.7644086747673], [5078.345641323613, 594.7136771295332], [5041.973389873998, 553.0908157176546], [5041.981191777612, 553.1502051699931], [5021.4344165321845, 530.0586392589285], [4988.431666727647, 493.7568150948159], [4970.84750467454, 474.75567900613623]], [[4970.84750467454, 474.75567900613623], [4920.484282469849, 421.1736449486143], [4896.080159789034, 396.6593646860756], [4823.616354408918, 324.92145694217925], [4823.6861024673835, 325.4105037705508], [4783.217455051228, 286.67576583518803], [4719.074359980207, 228.48758122214076], [4685.26691877315, 198.94459259318091]], [[4685.26691877315, 198.94459259318091], [4626.564115061071, 149.00707955004054], [4598.331372976059, 126.74936428860337], [4514.682166882483, 62.0431029625488], [4514.806484440916, 62.7692175801526], [4468.314241387242, 28.272663441616714], [4395.08347332831, -22.06197162099579], [4356.666099545187, -47.190192206637676]], [[4356.666099545187, -47.190192206637676], [4291.855283531501, -88.04603297426456], [4260.913712664463, -105.6938695153226], [4169.426329136597, -156.57234825561954], [4169.619774941961, -155.68041870293655], [4118.996103452337, -182.41870487977985], [4039.7577012877464, -219.92398983637213], [3998.372367287468, -238.24557895788166]] … [[98.15043335789173, -1.1090517200973316], [95.291646681216, -1.045511038366107], [93.97812463758433, -1.0183503277138033], [90.13925315618691, -0.9380020594519558], [90.16538251871326, -0.9405603529882542], [88.08532083697486, -0.8966452887158303], [84.94372998460285, -0.8357238492490994], [83.3382976730893, -0.8051510117580032]], [[83.3382976730893, -0.8051510117580032], [80.8775706776224, -0.7589522914994046], [79.74611727881795, -0.7391973386680608], [76.43983088642784, -0.6807919086442269], [76.46174181127171, -0.6826237102080156], [74.67018187047255, -0.6507315956565118], [71.96236116782966, -0.6064500818271277], [70.57821172954013, -0.5842351331439367]], [[70.57821172954013, -0.5842351331439367], [68.45463902570549, -0.5506457635444854], [67.47731199510292, -0.5362764123423317], [64.62167103696608, -0.4938223322053859], [64.63999399346109, -0.4951299457421977], [63.092385850244455, -0.47197315549000685], [60.751026901345895, -0.43978604216080974], [59.553673573974294, -0.42364443312262323]], [[59.553673573974294, -0.42364443312262323], [57.71437661384596, -0.3992193613787593], [56.86685255779144, -0.3887647293092498], [54.39040626888744, -0.357900686753474], [54.405670950761554, -0.358830325419444], [53.06306616698331, -0.3420166857801305], [51.02909692874271, -0.3186147368175331], [49.98817681501832, -0.3068833718599272]], [[49.98817681501832, -0.3068833718599272], [48.386391030335794, -0.2891137736231763], [47.64706109261358, -0.28150234064539964], [45.48611594396324, -0.2590516722499826], [45.49876772789417, -0.25970895730775956], [44.326270748046646, -0.24749657343724532], [42.54639154996151, -0.23046811462649394], [41.63434040115049, -0.2219348068886777]], [[41.63434040115049, -0.2219348068886777], [40.227222643663005, -0.2089905136815482], [39.57612232344887, -0.20344010130119256], [37.671416439470214, -0.1870835995956423], [37.681829825539516, -0.18754480314976202], [36.64663834977046, -0.17866185684616884], [35.07005612755109, -0.16624304937407808], [34.260279731850346, -0.16002051662975778]], [[34.260279731850346, -0.16002051662975778], [33.00573733872269, -0.15055914033043724], [32.42292911207209, -0.14649503980069506], [30.714396509259753, -0.1345265342450718], [30.722885695524493, -0.1348467177683773], [29.791038064481175, -0.12835615196092703], [28.36372145930141, -0.11924122108283368], [27.627213715474785, -0.11467036655111452]], [[27.627213715474785, -0.11467036655111452], [26.477551028069296, -0.10768768021038921], [25.93973596439509, -0.10467738907169735], [24.355007685754657, -0.09580523792956859], [24.361838094560976, -0.0960242427877599], [23.49063695525467, -0.0912109208917323], [22.141092141105258, -0.08438573254879866], [21.43758452049876, -0.0809467794769274]], [[21.43758452049876, -0.0809467794769274], [20.32055890099334, -0.07562358671587624], [19.790557059485057, -0.07330529401962298], [18.207199531913055, -0.06641641971807197], [18.212635150952156, -0.06656391761095777], [17.323910339516107, -0.06278433428388638], [15.908879307420918, -0.05726131423958301], [15.150249991272286, -0.054407521046642045]], [[15.150249991272286, -0.054407521046642045], [14.010866240336307, -0.05022205718151003], [13.448180638875156, -0.04829893878850064], [11.68962392790391, -0.04229338140279096], [11.693120394524563, -0.042370261714176544], [10.633322457063002, -0.03879925408194443], [8.768737145522165, -0.032718922499400685], [7.636379292948331, -0.028994322834972316]]], SciMLBase.ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Any}, SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}, SciMLBase.StandardODEProblem}(SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}(GasChromatographySimulator.odesystem_r!, LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, SciMLBase.DEFAULT_OBSERVED, nothing), [0.0, 0.0], (0.0, 11.18), Any[GasChromatographySimulator.Column(11.18, 0.000104, [0.000104], 1.04e-7, [1.04e-7], "FS5ms", "H2"), GasChromatographySimulator.Program{GasChromatographySimulator.var"#gf#5"{Matrix{Float64}}}([0.0, 60.0, 1680.0, 60.0, 360.0, 60.0], [40.0, 40.0, 180.0, 180.0, 300.0, 300.0], [411564.0, 411564.0, 411564.0, 411564.0, 411564.0, 411564.0], [101300.0, 101300.0, 101300.0, 101300.0, 101300.0, 101300.0], GasChromatographySimulator.var"#gf#5"{Matrix{Float64}}([0.0 0.0 11.18 0.0; 0.0 0.0 11.18 0.0; … ; 0.0 0.0 11.18 0.0; 0.0 0.0 11.18 0.0]), [0.0 0.0 11.18 0.0; 0.0 0.0 11.18 0.0; … ; 0.0 0.0 11.18 0.0; 0.0 0.0 11.18 0.0], 11181×6 extrapolate(interpolate((0.0:0.001:11.18,::Vector{Float64}), ::Matrix{Float64}, Gridded(Linear())), Flat()) with element type Float64:
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
⋮ ⋮
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15, 6-element extrapolate(interpolate((::Vector{Float64},), ::Vector{Float64}, Gridded(Linear())), Flat()) with element type Float64:
411564.0
411564.0
411564.0
411564.0
411564.0
411564.0, 6-element extrapolate(interpolate((::Vector{Float64},), ::Vector{Float64}, Gridded(Linear())), Flat()) with element type Float64:
101300.0
101300.0
101300.0
101300.0
101300.0
101300.0), GasChromatographySimulator.Substance("C15", "629-62-9", 474.4, 37.39, 129.62, 0.001, "Leppert2020b, alkane, alkanes", 9.64976601701651e-5, 0.0, 0.0), GasChromatographySimulator.Options(OwrenZen5(), 1.0e-6, 0.001, "inlet", true, true, "Blumberg", "Pressure")], Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}(), SciMLBase.StandardODEProblem()), OwrenZen5(), OrdinaryDiffEq.InterpolationData{SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}}(SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}(GasChromatographySimulator.odesystem_r!, LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, SciMLBase.DEFAULT_OBSERVED, nothing), [[0.0, 0.0], [0.5118766854272803, 0.4219575619756654], [5.630525256437843, 4.641338174675174], [56.805180800932064, 46.81564359595516], [59.615807759047144, 49.13143747552918], [60.02721907677394, 49.47041209211274], [64.08188576665707, 49.91605812177886], [72.49442963807763, 50.48957592229632], [82.9002941253958, 50.643301853655736], [95.27754165053068, 50.19276577527522] … [779.0813321257494, 2.2604533714317525], [812.651455348656, 1.9600405936908976], [846.4977517608771, 1.700162907864467], [880.5064353658115, 1.4753155838233665], [914.5019585510814, 1.280789638371047], [948.2096971006372, 1.112602816651276], [981.1849899109388, 0.9674958600928868], [1012.6627035962109, 0.8430865570427569], [1041.1791037897399, 0.738552390690814], [1061.4025141274865, 0.6650853178014323]], [0.0, 9.999999999999999e-5, 0.0010999999999999998, 0.011099999999999997, 0.011649344257923317, 0.011729756721469595, 0.012533881356932368, 0.014277376254310326, 0.016581195024200013, 0.019547835138334132 … 2.2897888992674917, 2.7279576392312253, 3.2505077356979624, 3.8743074921087874, 4.619895315607754, 5.512478011968099, 6.583397667510214, 7.872689663721999, 9.436361436328305, 11.18], [[[0.0, 0.0]], [[5118.777607130979, 4219.5933476709215], [5118.774022848682, 4219.58743836616], [5118.772230706591, 4219.5844837137765], [5118.766854276601, 4219.575619756711], [5118.766854276631, 4219.57561975676], [5118.763782028287, 4219.570554638267], [5118.758789620914, 4219.562323820918], [5118.756101399543, 4219.557891842347]], [[5118.756101399543, 4219.557891842347], [5118.720258313036, 4219.498798794728], [5118.702336675659, 4219.469252270917], [5118.648571387048, 4219.380612699487], [5118.648571387048, 4219.380612699487], [5118.617848111424, 4219.32996151581], [5118.567922395269, 4219.247653342417], [5118.541039115565, 4219.203333556623]], [[5118.541039115565, 4219.203333556623], [5118.18258189391, 4218.612403080417], [5118.003343868406, 4218.316937842311], [5117.465592125278, 4217.430542128], [5117.465592125278, 4217.430542128], [5117.1582800425285, 4216.924030291252], [5116.6588585416785, 4216.100948556533], [5116.38991907984, 4215.657750699345]], [[5116.38991907984, 4215.657750699345], [5116.370219811, 4215.625288272984], [5116.360370148129, 4215.609057059787], [5116.330821045741, 4215.560363420196], [5116.330821045741, 4215.560363420196], [5116.313935767754, 4215.532538483288], [5116.28649707217, 4215.487322960811], [5116.271722328982, 4215.462976141015]], [[5116.271722328982, 4215.462976141015], [5116.268838707812, 4215.458224323476], [5116.267396896618, 4215.455848414709], [5116.263071460599, 4215.448720688402], [5116.263071460599, 4215.448720688402], [5116.2605997812325, 4215.444647701942], [5116.256583299713, 4215.438029098944], [5115.270622322609, 638.0445171232604]], [[5115.270622322609, 638.0445171232604], [5090.531941134906, 608.7644086747673], [5078.345641323613, 594.7136771295332], [5041.973389873998, 553.0908157176546], [5041.981191777612, 553.1502051699931], [5021.4344165321845, 530.0586392589285], [4988.431666727647, 493.7568150948159], [4970.84750467454, 474.75567900613623]], [[4970.84750467454, 474.75567900613623], [4920.484282469849, 421.1736449486143], [4896.080159789034, 396.6593646860756], [4823.616354408918, 324.92145694217925], [4823.6861024673835, 325.4105037705508], [4783.217455051228, 286.67576583518803], [4719.074359980207, 228.48758122214076], [4685.26691877315, 198.94459259318091]], [[4685.26691877315, 198.94459259318091], [4626.564115061071, 149.00707955004054], [4598.331372976059, 126.74936428860337], [4514.682166882483, 62.0431029625488], [4514.806484440916, 62.7692175801526], [4468.314241387242, 28.272663441616714], [4395.08347332831, -22.06197162099579], [4356.666099545187, -47.190192206637676]], [[4356.666099545187, -47.190192206637676], [4291.855283531501, -88.04603297426456], [4260.913712664463, -105.6938695153226], [4169.426329136597, -156.57234825561954], [4169.619774941961, -155.68041870293655], [4118.996103452337, -182.41870487977985], [4039.7577012877464, -219.92398983637213], [3998.372367287468, -238.24557895788166]] … [[98.15043335789173, -1.1090517200973316], [95.291646681216, -1.045511038366107], [93.97812463758433, -1.0183503277138033], [90.13925315618691, -0.9380020594519558], [90.16538251871326, -0.9405603529882542], [88.08532083697486, -0.8966452887158303], [84.94372998460285, -0.8357238492490994], [83.3382976730893, -0.8051510117580032]], [[83.3382976730893, -0.8051510117580032], [80.8775706776224, -0.7589522914994046], [79.74611727881795, -0.7391973386680608], [76.43983088642784, -0.6807919086442269], [76.46174181127171, -0.6826237102080156], [74.67018187047255, -0.6507315956565118], [71.96236116782966, -0.6064500818271277], [70.57821172954013, -0.5842351331439367]], [[70.57821172954013, -0.5842351331439367], [68.45463902570549, -0.5506457635444854], [67.47731199510292, -0.5362764123423317], [64.62167103696608, -0.4938223322053859], [64.63999399346109, -0.4951299457421977], [63.092385850244455, -0.47197315549000685], [60.751026901345895, -0.43978604216080974], [59.553673573974294, -0.42364443312262323]], [[59.553673573974294, -0.42364443312262323], [57.71437661384596, -0.3992193613787593], [56.86685255779144, -0.3887647293092498], [54.39040626888744, -0.357900686753474], [54.405670950761554, -0.358830325419444], [53.06306616698331, -0.3420166857801305], [51.02909692874271, -0.3186147368175331], [49.98817681501832, -0.3068833718599272]], [[49.98817681501832, -0.3068833718599272], [48.386391030335794, -0.2891137736231763], [47.64706109261358, -0.28150234064539964], [45.48611594396324, -0.2590516722499826], [45.49876772789417, -0.25970895730775956], [44.326270748046646, -0.24749657343724532], [42.54639154996151, -0.23046811462649394], [41.63434040115049, -0.2219348068886777]], [[41.63434040115049, -0.2219348068886777], [40.227222643663005, -0.2089905136815482], [39.57612232344887, -0.20344010130119256], [37.671416439470214, -0.1870835995956423], [37.681829825539516, -0.18754480314976202], [36.64663834977046, -0.17866185684616884], [35.07005612755109, -0.16624304937407808], [34.260279731850346, -0.16002051662975778]], [[34.260279731850346, -0.16002051662975778], [33.00573733872269, -0.15055914033043724], [32.42292911207209, -0.14649503980069506], [30.714396509259753, -0.1345265342450718], [30.722885695524493, -0.1348467177683773], [29.791038064481175, -0.12835615196092703], [28.36372145930141, -0.11924122108283368], [27.627213715474785, -0.11467036655111452]], [[27.627213715474785, -0.11467036655111452], [26.477551028069296, -0.10768768021038921], [25.93973596439509, -0.10467738907169735], [24.355007685754657, -0.09580523792956859], [24.361838094560976, -0.0960242427877599], [23.49063695525467, -0.0912109208917323], [22.141092141105258, -0.08438573254879866], [21.43758452049876, -0.0809467794769274]], [[21.43758452049876, -0.0809467794769274], [20.32055890099334, -0.07562358671587624], [19.790557059485057, -0.07330529401962298], [18.207199531913055, -0.06641641971807197], [18.212635150952156, -0.06656391761095777], [17.323910339516107, -0.06278433428388638], [15.908879307420918, -0.05726131423958301], [15.150249991272286, -0.054407521046642045]], [[15.150249991272286, -0.054407521046642045], [14.010866240336307, -0.05022205718151003], [13.448180638875156, -0.04829893878850064], [11.68962392790391, -0.04229338140279096], [11.693120394524563, -0.042370261714176544], [10.633322457063002, -0.03879925408194443], [8.768737145522165, -0.032718922499400685], [7.636379292948331, -0.028994322834972316]]], true, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}([1061.4025141274865, 0.6650853178014323], [1041.1791037897399, 0.738552390690814], [15.150249991272286, -0.054407521046642045], [14.010866240336307, -0.05022205718151003], [13.448180638875156, -0.04829893878850064], [11.68962392790391, -0.04229338140279096], [11.693120394524563, -0.042370261714176544], [10.633322457063002, -0.03879925408194443], [8.768737145522165, -0.032718922499400685], [7.636379292948331, -0.028994322834972316], [0.014212362694510434, -5.774479393020655e-5], [1059.6092961160357, 0.6718533734267848], [0.013390159826438422, -0.0780807345863182], OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}(0.16666666666666666, 0.0625, 0.1875, 0.25, -0.75, -0.75, 3.75, -3.0, 0.5, 0.26895043731778423, -0.7084548104956269, 0.8658892128279884, 0.15462307371928363, 0.06184922948771345, -0.02947695035460993, 0.18500664893617022, 0.4802345261121857, -0.5337849069148937, -0.013090093085106383, 0.7861107753062541, 0.08783068783068783, 0.3006060606060606, 0.22777777777777777, 0.027777777777777776, 0.06218596218596219, 0.2938217338217338, 0.16666666666666666, 0.25, 0.5, 0.5, 0.6428571428571429, 0.875, -0.19894179894179895, 0.9115151515151515, -1.9777777777777779, -0.1111111111111111, 1.67013727013727, -0.2938217338217338, 1.892063492063492, -6.067155067155067, 7.282458282458283, -4.0195360195360195, -7.214545454545455, 20.676923076923078, -20.31142191142191, 7.14965034965035, 7.866666666666666, -18.78205128205128, 13.508547008547009, -2.3653846153846154, 2.0, -5.294871794871795, 4.534188034188034, -1.2115384615384615, -1.4924630924630924, 1.5785667324128863, 1.1958838881915805, -1.219801565955412, -7.051721611721612, 16.273203719357564, -11.978886071193763, 3.0512256973795435, 4.0, -8.384615384615385, 5.769230769230769, -1.3846153846153846))), true, 0, DiffEqBase.DEStats
Number of function 1 evaluations: 423
Number of function 2 evaluations: 0
Number of W matrix evaluations: 0
Number of linear solves: 0
Number of Jacobians created: 0
Number of nonlinear solver iterations: 0
Number of nonlinear solver convergence failures: 0
Number of rootfind condition calls: 0
Number of accepted steps: 43
Number of rejected steps: 17, :Success), SciMLBase.ODESolution{Float64, 2, Vector{Vector{Float64}}, Nothing, Nothing, Vector{Float64}, Vector{Vector{Vector{Float64}}}, SciMLBase.ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Any}, SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}, SciMLBase.StandardODEProblem}, OwrenZen5, OrdinaryDiffEq.InterpolationData{SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}}, DiffEqBase.DEStats}([[0.0, 0.0], [1.3632874253856637, 3.0749596433097057], [14.995846653985922, 33.823134988399396], [55.93531587531197, 126.15415562330914], [59.00140139281977, 133.06864688225258], [60.03447609322315, 135.3983734349431], [69.9765922128378, 136.3724781509097], [80.36045222554588, 135.74238084068182], [93.32018340004988, 133.1684872501259], [107.4650187874269, 128.7389594827033] … [924.2435079066985, 2.2602417834589543], [958.232093653662, 1.9607744768825535], [992.52059449631, 1.7016605215306697], [1026.9884395580605, 1.477412167614483], [1061.4511671373486, 1.283339016615], [1095.6210362302616, 1.1154801068982887], [1129.0319981210923, 0.9706041226665136], [1160.8794141415683, 0.846378989251103], [1189.612695196167, 0.7421168417735724], [1208.7099556609892, 0.6731402015769693]], nothing, nothing, [0.0, 9.999999999999999e-5, 0.0010999999999999998, 0.00410331816109622, 0.004328261355452321, 0.0044040533026731095, 0.005161972774880993, 0.006016946471397991, 0.007182042598586932, 0.00858894829417847 … 2.3236023042070024, 2.7649373310743957, 3.291401351383909, 3.9200494360280747, 4.671660856117442, 5.571757157753472, 6.652108401581472, 7.95339410789575, 9.533134288529169, 11.18], [[[0.0, 0.0]], [[13632.902892075097, 30749.72562291578], [13632.893346012297, 30749.682559642846], [13632.888572978387, 30749.661028006354], [13632.874253866816, 30749.59643309774], [13632.874253866643, 30749.596433096955], [13632.866071510314, 30749.559521720123], [13632.852775170772, 30749.499540732595], [13632.845615598017, 30749.46724327809]], [[13632.845615598017, 30749.46724327809], [13632.750154268142, 30749.036610548625], [13632.702423352528, 30748.82129418389], [13632.559229602992, 30748.175345089698], [13632.559229602992, 30748.175345089705], [13632.477403927947, 30747.806231321567], [13632.344436158493, 30747.206421448398], [13632.272837591576, 30746.883446901273]], [[13632.272837591576, 30746.883446901273], [13631.986122788474, 30745.590119804096], [13631.842763125525, 30744.943456255507], [13631.41267509052, 30743.00346560975], [13631.41267509052, 30743.00346560975], [13631.166904406406, 30741.89489952643], [13630.767517593402, 30740.093479641084], [13630.552458308495, 30739.1234843182]], [[13630.552458308495, 30739.1234843182], [13630.530981377682, 30739.026616416435], [13630.520242899585, 30738.978182465555], [13630.488027414534, 30738.832880612918], [13630.488027414534, 30738.832880612918], [13630.469618531748, 30738.749850982837], [13630.439704044195, 30738.614927833965], [13630.423596216007, 30738.54227690763]], [[13630.423596216007, 30738.54227690763], [13630.41635975371, 30738.509638414533], [13630.412741521119, 30738.493319167977], [13630.401886817584, 30738.44436142832], [13630.401886817584, 30738.44436142832], [13630.395684125971, 30738.416385577093], [13630.385604746076, 30738.37092481884], [13626.796541540869, 2577.562377691087]], [[13626.796541540869, 2577.562377691087], [13449.10096102353, 2088.4587974705973], [13363.771964415691, 1871.0429836641815], [13111.04545725893, 1238.8032743339027], [13111.453838435804, 1246.394760205003], [12971.112743311844, 909.3049387514293], [12750.340068976566, 418.82278346993553], [12634.624765580622, 174.11295698777758]], [[12634.624765580622, 174.11295698777758], [12463.53516823539, -175.38057184115314], [12381.507525625611, -328.89083860008395], [12138.666319376902, -773.3658535384275], [12139.09029389682, -767.1753459206775], [12004.367734965683, -1002.4266901370138], [11792.717207821259, -1339.5932876453444], [11681.888812907406, -1506.176860807238]], [[11681.888812907406, -1506.176860807238], [11484.374737602058, -1789.7977936651587], [11390.674907388193, -1908.4403963149634], [11114.061465672932, -2247.6376853740912], [11114.824404726338, -2239.095710520014], [10962.298662937572, -2415.028159242447], [10724.864484074396, -2650.761255562702], [10601.303405252445, -2763.18610435554]], [[10601.303405252445, -2763.18610435554], [10406.788734959448, -2928.057592763398], [10314.930770217381, -2993.4323287277257], [10044.068887119283, -3176.643387746575], [10044.953529704017, -3169.7476297253215], [9895.96522053717, -3261.9031038650337], [9664.972574582684, -3374.223011535327], [9545.072234543106, -3424.613440130892]] … [[98.58177449912893, -1.0978356799525728], [95.72175000013968, -1.0349047655997445], [94.4070749709558, -1.0079999855249575], [90.56457697557556, -0.9284355520723778], [90.59042489149464, -0.9309517687361604], [88.50807682646436, -0.887485084793487], [85.36168775235944, -0.8271644531076078], [83.7534762034166, -0.796898349792215]], [[83.7534762034166, -0.796898349792215], [81.28753863146203, -0.7511572617792135], [80.15326350252212, -0.73159510917001], [76.83855834441538, -0.6737765319317518], [76.86030160738419, -0.6755792489291638], [75.0639483864948, -0.6440201264271288], [72.34790123543557, -0.6001877949355543], [70.95930601022252, -0.5782014739076775]], [[70.95930601022252, -0.5782014739076775], [68.82810094937277, -0.5449524731812204], [67.84694394738118, -0.5307269637798381], [64.97998880234564, -0.4887085467926967], [64.99821836576255, -0.4899960056338915], [63.44430383604946, -0.46708480984731465], [61.09266495294098, -0.4352307672093293], [59.88986875123841, -0.4192582661944064]], [[59.88986875123841, -0.4192582661944064], [58.04149839839142, -0.39508448926556583], [57.18954665954856, -0.3847363236659256], [54.700058879399684, -0.35419340487421735], [54.71527702555162, -0.355109037121823], [53.365455360608294, -0.3384754453463079], [51.31996131010609, -0.3153186827427273], [50.27298532228472, -0.3037115316533485]], [[50.27298532228472, -0.3037115316533485], [48.661221235491375, -0.28612609156052243], [47.91707862536021, -0.2785928337911662], [45.74194960911119, -0.25637707593033426], [45.754583004356675, -0.25702460549989053], [44.57424277059991, -0.2449433090469638], [42.781928971478514, -0.22809383985532491], [41.863348694340004, -0.21965099928898377]], [[41.863348694340004, -0.21965099928898377], [40.44550239282291, -0.20684038932004192], [39.78924087773992, -0.20134678140794598], [37.86925873036486, -0.18516028620616506], [37.8796691049457, -0.18561468011829685], [36.83598729542024, -0.17682614293052715], [35.24591397172238, -0.16453622225008646], [34.42901327875247, -0.15837859273792734]], [[34.42901327875247, -0.15837859273792734], [33.1627020902205, -0.1490124576330713], [32.57420145721133, -0.14498875362393598], [30.848650061251245, -0.13314035788252856], [30.857143013003164, -0.133455781040598], [29.915709509416374, -0.12703139714532047], [28.4729603998912, -0.11800600321887628], [27.728180978172542, -0.11347976876022707]], [[27.728180978172542, -0.11347976876022707], [26.56461016317612, -0.1065610815061886], [26.01996044981156, -0.10357754994658795], [24.41436275158216, -0.09478330705986919], [24.421198461745828, -0.09499899707690836], [23.537902092476223, -0.09022742571089469], [22.168277008514835, -0.08345558410785188], [21.453653827657373, -0.08004170867744635]], [[21.453653827657373, -0.08004170867744635], [20.316886104014284, -0.074748793039739], [19.776846992392425, -0.07244144583449302], [18.16137522144309, -0.06557767375011281], [18.166821977318683, -0.06572302378334602], [17.258249713734923, -0.06195124739030211], [15.80778286388561, -0.05642136679025752], [15.027926905923882, -0.0535546788936535]], [[15.027926905923882, -0.0535546788936535], [13.93058449914456, -0.04961066980979474], [13.38662391490271, -0.047780915430259564], [11.685359814483673, -0.042057959516986834], [11.688264959347523, -0.04212080333287549], [10.66223603743121, -0.03871060992306472], [8.85819674807623, -0.03287524223596462], [7.767317880062894, -0.02931361537153733]]], SciMLBase.ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Any}, SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}, SciMLBase.StandardODEProblem}(SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}(GasChromatographySimulator.odesystem_r!, LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, SciMLBase.DEFAULT_OBSERVED, nothing), [0.0, 0.0], (0.0, 11.18), Any[GasChromatographySimulator.Column(11.18, 0.000104, [0.000104], 1.04e-7, [1.04e-7], "FS5ms", "H2"), GasChromatographySimulator.Program{GasChromatographySimulator.var"#gf#5"{Matrix{Float64}}}([0.0, 60.0, 1680.0, 60.0, 360.0, 60.0], [40.0, 40.0, 180.0, 180.0, 300.0, 300.0], [411564.0, 411564.0, 411564.0, 411564.0, 411564.0, 411564.0], [101300.0, 101300.0, 101300.0, 101300.0, 101300.0, 101300.0], GasChromatographySimulator.var"#gf#5"{Matrix{Float64}}([0.0 0.0 11.18 0.0; 0.0 0.0 11.18 0.0; … ; 0.0 0.0 11.18 0.0; 0.0 0.0 11.18 0.0]), [0.0 0.0 11.18 0.0; 0.0 0.0 11.18 0.0; … ; 0.0 0.0 11.18 0.0; 0.0 0.0 11.18 0.0], 11181×6 extrapolate(interpolate((0.0:0.001:11.18,::Vector{Float64}), ::Matrix{Float64}, Gridded(Linear())), Flat()) with element type Float64:
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
⋮ ⋮
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15, 6-element extrapolate(interpolate((::Vector{Float64},), ::Vector{Float64}, Gridded(Linear())), Flat()) with element type Float64:
411564.0
411564.0
411564.0
411564.0
411564.0
411564.0, 6-element extrapolate(interpolate((::Vector{Float64},), ::Vector{Float64}, Gridded(Linear())), Flat()) with element type Float64:
101300.0
101300.0
101300.0
101300.0
101300.0
101300.0), GasChromatographySimulator.Substance("C16", "544-76-3", 488.25, 38.46, 142.18, 0.001, "Leppert2020b, alkane, alkanes", 9.329323536538124e-5, 0.0, 0.0), GasChromatographySimulator.Options(OwrenZen5(), 1.0e-6, 0.001, "inlet", true, true, "Blumberg", "Pressure")], Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}(), SciMLBase.StandardODEProblem()), OwrenZen5(), OrdinaryDiffEq.InterpolationData{SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}}(SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}(GasChromatographySimulator.odesystem_r!, LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, SciMLBase.DEFAULT_OBSERVED, nothing), [[0.0, 0.0], [1.3632874253856637, 3.0749596433097057], [14.995846653985922, 33.823134988399396], [55.93531587531197, 126.15415562330914], [59.00140139281977, 133.06864688225258], [60.03447609322315, 135.3983734349431], [69.9765922128378, 136.3724781509097], [80.36045222554588, 135.74238084068182], [93.32018340004988, 133.1684872501259], [107.4650187874269, 128.7389594827033] … [924.2435079066985, 2.2602417834589543], [958.232093653662, 1.9607744768825535], [992.52059449631, 1.7016605215306697], [1026.9884395580605, 1.477412167614483], [1061.4511671373486, 1.283339016615], [1095.6210362302616, 1.1154801068982887], [1129.0319981210923, 0.9706041226665136], [1160.8794141415683, 0.846378989251103], [1189.612695196167, 0.7421168417735724], [1208.7099556609892, 0.6731402015769693]], [0.0, 9.999999999999999e-5, 0.0010999999999999998, 0.00410331816109622, 0.004328261355452321, 0.0044040533026731095, 0.005161972774880993, 0.006016946471397991, 0.007182042598586932, 0.00858894829417847 … 2.3236023042070024, 2.7649373310743957, 3.291401351383909, 3.9200494360280747, 4.671660856117442, 5.571757157753472, 6.652108401581472, 7.95339410789575, 9.533134288529169, 11.18], [[[0.0, 0.0]], [[13632.902892075097, 30749.72562291578], [13632.893346012297, 30749.682559642846], [13632.888572978387, 30749.661028006354], [13632.874253866816, 30749.59643309774], [13632.874253866643, 30749.596433096955], [13632.866071510314, 30749.559521720123], [13632.852775170772, 30749.499540732595], [13632.845615598017, 30749.46724327809]], [[13632.845615598017, 30749.46724327809], [13632.750154268142, 30749.036610548625], [13632.702423352528, 30748.82129418389], [13632.559229602992, 30748.175345089698], [13632.559229602992, 30748.175345089705], [13632.477403927947, 30747.806231321567], [13632.344436158493, 30747.206421448398], [13632.272837591576, 30746.883446901273]], [[13632.272837591576, 30746.883446901273], [13631.986122788474, 30745.590119804096], [13631.842763125525, 30744.943456255507], [13631.41267509052, 30743.00346560975], [13631.41267509052, 30743.00346560975], [13631.166904406406, 30741.89489952643], [13630.767517593402, 30740.093479641084], [13630.552458308495, 30739.1234843182]], [[13630.552458308495, 30739.1234843182], [13630.530981377682, 30739.026616416435], [13630.520242899585, 30738.978182465555], [13630.488027414534, 30738.832880612918], [13630.488027414534, 30738.832880612918], [13630.469618531748, 30738.749850982837], [13630.439704044195, 30738.614927833965], [13630.423596216007, 30738.54227690763]], [[13630.423596216007, 30738.54227690763], [13630.41635975371, 30738.509638414533], [13630.412741521119, 30738.493319167977], [13630.401886817584, 30738.44436142832], [13630.401886817584, 30738.44436142832], [13630.395684125971, 30738.416385577093], [13630.385604746076, 30738.37092481884], [13626.796541540869, 2577.562377691087]], [[13626.796541540869, 2577.562377691087], [13449.10096102353, 2088.4587974705973], [13363.771964415691, 1871.0429836641815], [13111.04545725893, 1238.8032743339027], [13111.453838435804, 1246.394760205003], [12971.112743311844, 909.3049387514293], [12750.340068976566, 418.82278346993553], [12634.624765580622, 174.11295698777758]], [[12634.624765580622, 174.11295698777758], [12463.53516823539, -175.38057184115314], [12381.507525625611, -328.89083860008395], [12138.666319376902, -773.3658535384275], [12139.09029389682, -767.1753459206775], [12004.367734965683, -1002.4266901370138], [11792.717207821259, -1339.5932876453444], [11681.888812907406, -1506.176860807238]], [[11681.888812907406, -1506.176860807238], [11484.374737602058, -1789.7977936651587], [11390.674907388193, -1908.4403963149634], [11114.061465672932, -2247.6376853740912], [11114.824404726338, -2239.095710520014], [10962.298662937572, -2415.028159242447], [10724.864484074396, -2650.761255562702], [10601.303405252445, -2763.18610435554]], [[10601.303405252445, -2763.18610435554], [10406.788734959448, -2928.057592763398], [10314.930770217381, -2993.4323287277257], [10044.068887119283, -3176.643387746575], [10044.953529704017, -3169.7476297253215], [9895.96522053717, -3261.9031038650337], [9664.972574582684, -3374.223011535327], [9545.072234543106, -3424.613440130892]] … [[98.58177449912893, -1.0978356799525728], [95.72175000013968, -1.0349047655997445], [94.4070749709558, -1.0079999855249575], [90.56457697557556, -0.9284355520723778], [90.59042489149464, -0.9309517687361604], [88.50807682646436, -0.887485084793487], [85.36168775235944, -0.8271644531076078], [83.7534762034166, -0.796898349792215]], [[83.7534762034166, -0.796898349792215], [81.28753863146203, -0.7511572617792135], [80.15326350252212, -0.73159510917001], [76.83855834441538, -0.6737765319317518], [76.86030160738419, -0.6755792489291638], [75.0639483864948, -0.6440201264271288], [72.34790123543557, -0.6001877949355543], [70.95930601022252, -0.5782014739076775]], [[70.95930601022252, -0.5782014739076775], [68.82810094937277, -0.5449524731812204], [67.84694394738118, -0.5307269637798381], [64.97998880234564, -0.4887085467926967], [64.99821836576255, -0.4899960056338915], [63.44430383604946, -0.46708480984731465], [61.09266495294098, -0.4352307672093293], [59.88986875123841, -0.4192582661944064]], [[59.88986875123841, -0.4192582661944064], [58.04149839839142, -0.39508448926556583], [57.18954665954856, -0.3847363236659256], [54.700058879399684, -0.35419340487421735], [54.71527702555162, -0.355109037121823], [53.365455360608294, -0.3384754453463079], [51.31996131010609, -0.3153186827427273], [50.27298532228472, -0.3037115316533485]], [[50.27298532228472, -0.3037115316533485], [48.661221235491375, -0.28612609156052243], [47.91707862536021, -0.2785928337911662], [45.74194960911119, -0.25637707593033426], [45.754583004356675, -0.25702460549989053], [44.57424277059991, -0.2449433090469638], [42.781928971478514, -0.22809383985532491], [41.863348694340004, -0.21965099928898377]], [[41.863348694340004, -0.21965099928898377], [40.44550239282291, -0.20684038932004192], [39.78924087773992, -0.20134678140794598], [37.86925873036486, -0.18516028620616506], [37.8796691049457, -0.18561468011829685], [36.83598729542024, -0.17682614293052715], [35.24591397172238, -0.16453622225008646], [34.42901327875247, -0.15837859273792734]], [[34.42901327875247, -0.15837859273792734], [33.1627020902205, -0.1490124576330713], [32.57420145721133, -0.14498875362393598], [30.848650061251245, -0.13314035788252856], [30.857143013003164, -0.133455781040598], [29.915709509416374, -0.12703139714532047], [28.4729603998912, -0.11800600321887628], [27.728180978172542, -0.11347976876022707]], [[27.728180978172542, -0.11347976876022707], [26.56461016317612, -0.1065610815061886], [26.01996044981156, -0.10357754994658795], [24.41436275158216, -0.09478330705986919], [24.421198461745828, -0.09499899707690836], [23.537902092476223, -0.09022742571089469], [22.168277008514835, -0.08345558410785188], [21.453653827657373, -0.08004170867744635]], [[21.453653827657373, -0.08004170867744635], [20.316886104014284, -0.074748793039739], [19.776846992392425, -0.07244144583449302], [18.16137522144309, -0.06557767375011281], [18.166821977318683, -0.06572302378334602], [17.258249713734923, -0.06195124739030211], [15.80778286388561, -0.05642136679025752], [15.027926905923882, -0.0535546788936535]], [[15.027926905923882, -0.0535546788936535], [13.93058449914456, -0.04961066980979474], [13.38662391490271, -0.047780915430259564], [11.685359814483673, -0.042057959516986834], [11.688264959347523, -0.04212080333287549], [10.66223603743121, -0.03871060992306472], [8.85819674807623, -0.03287524223596462], [7.767317880062894, -0.02931361537153733]]], true, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}([1208.7099556609892, 0.6731402015769693], [1189.612695196167, 0.7421168417735724], [15.027926905923882, -0.0535546788936535], [13.93058449914456, -0.04961066980979474], [13.38662391490271, -0.047780915430259564], [11.685359814483673, -0.042057959516986834], [11.688264959347523, -0.04212080333287549], [10.66223603743121, -0.03871060992306472], [8.85819674807623, -0.03287524223596462], [7.767317880062894, -0.02931361537153733], [0.012110559811022839, -4.932189091978669e-5], [1206.994081112947, 0.6795766572708888], [0.010019401043982532, -0.06637164998450548], OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}(0.16666666666666666, 0.0625, 0.1875, 0.25, -0.75, -0.75, 3.75, -3.0, 0.5, 0.26895043731778423, -0.7084548104956269, 0.8658892128279884, 0.15462307371928363, 0.06184922948771345, -0.02947695035460993, 0.18500664893617022, 0.4802345261121857, -0.5337849069148937, -0.013090093085106383, 0.7861107753062541, 0.08783068783068783, 0.3006060606060606, 0.22777777777777777, 0.027777777777777776, 0.06218596218596219, 0.2938217338217338, 0.16666666666666666, 0.25, 0.5, 0.5, 0.6428571428571429, 0.875, -0.19894179894179895, 0.9115151515151515, -1.9777777777777779, -0.1111111111111111, 1.67013727013727, -0.2938217338217338, 1.892063492063492, -6.067155067155067, 7.282458282458283, -4.0195360195360195, -7.214545454545455, 20.676923076923078, -20.31142191142191, 7.14965034965035, 7.866666666666666, -18.78205128205128, 13.508547008547009, -2.3653846153846154, 2.0, -5.294871794871795, 4.534188034188034, -1.2115384615384615, -1.4924630924630924, 1.5785667324128863, 1.1958838881915805, -1.219801565955412, -7.051721611721612, 16.273203719357564, -11.978886071193763, 3.0512256973795435, 4.0, -8.384615384615385, 5.769230769230769, -1.3846153846153846))), true, 0, DiffEqBase.DEStats
Number of function 1 evaluations: 430
Number of function 2 evaluations: 0
Number of W matrix evaluations: 0
Number of linear solves: 0
Number of Jacobians created: 0
Number of nonlinear solver iterations: 0
Number of nonlinear solver convergence failures: 0
Number of rootfind condition calls: 0
Number of accepted steps: 48
Number of rejected steps: 13, :Success), SciMLBase.ODESolution{Float64, 2, Vector{Vector{Float64}}, Nothing, Nothing, Vector{Float64}, Vector{Vector{Vector{Float64}}}, SciMLBase.ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Any}, SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}, SciMLBase.StandardODEProblem}, OwrenZen5, OrdinaryDiffEq.InterpolationData{SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}}, DiffEqBase.DEStats}([[0.0, 0.0], [3.4454018293551445, 20.15187020891205], [37.898623967543834, 221.66125914130734], [56.781421633138926, 332.09903631025884], [59.58219619947376, 348.4794071082316], [60.0076904816268, 350.967911711573], [64.1908817179444, 351.27557922334563], [72.22861795779541, 349.7654120296449], [81.95398347967667, 344.8964219817852], [93.57390532543772, 335.76368738892205] … [1067.2724610921673, 2.2184072721758628], [1101.9587192036608, 1.9250298842666953], [1136.9273543701881, 1.671139252520013], [1172.041128516911, 1.4513726653914871], [1207.0899943986274, 1.2611563253845477], [1241.744424094035, 1.096648642302752], [1275.464275173265, 0.9547680278020901], [1307.2969098690098, 0.8334476273236873], [1335.3325055801088, 0.7327291168899536], [1348.3277146734981, 0.6854909058106784]], nothing, nothing, [0.0, 9.999999999999999e-5, 0.0010999999999999998, 0.0016480884116323094, 0.0017293842243021817, 0.001741734726169323, 0.001865239744840736, 0.002114552008714646, 0.00243849328109591, 0.002859908268289787 … 2.43013963359493, 2.890910631867321, 3.4407187720498307, 4.097469542910511, 4.883016968340457, 5.824276454439865, 6.954921276010912, 8.31862994232289, 9.98150441211527, 11.18], [[[0.0, 0.0]], [[34454.09067019658, 201519.54873973038], [34454.066544673515, 201519.2665228601], [34454.05448190562, 201519.12541442472], [34454.01829357718, 201518.70208912512], [34454.0182935768, 201518.70208912063], [34453.9976145145, 201518.46018894453], [34453.964011011965, 201518.06710116068], [34453.945916804725, 201517.8554385079]], [[34453.945916804725, 201517.8554385079], [34453.704659800176, 201515.03326980377], [34453.58403066437, 201513.6221854516], [34453.22214072288, 201509.38893239535], [34453.22214072287, 201509.3889323953], [34453.01534476391, 201506.96993064886], [34452.67929868323, 201503.0390528109], [34452.49834943598, 201500.92242628278]], [[34452.49834943598, 201500.92242628278], [34452.366113920936, 201499.3756283204], [34452.29999597308, 201498.60222933913], [34452.10164136819, 201496.2820323955], [34452.10164136819, 201496.2820323955], [34451.98829536693, 201494.9562055705], [34451.80410731955, 201492.80173697995], [34451.70492873233, 201491.64163850818]], [[34451.70492873233, 201491.64163850818], [34451.68531433539, 201491.41220800983], [34451.675507132735, 201491.2974927607], [34451.646085508, 201490.9533470132], [34451.646085508, 201490.9533470132], [34451.62927313974, 201490.7566923005], [34451.601953023805, 201490.4371283921], [34451.58724218317, 201490.2650555183]], [[34451.58724218317, 201490.2650555183], [34451.5842623444, 201490.23020031853], [34451.58277242492, 201490.2127727187], [34451.578302666065, 201490.16048991878], [34451.578302666065, 201490.16048991878], [34451.57574851789, 201490.1306140332], [34451.57159802672, 201490.08206571918], [34449.427296253605, 5957.217389567348]], [[34449.427296253605, 5957.217389567348], [34252.504971021546, 4731.248052332579], [34155.76069143917, 4149.435118222114], [33867.245374456244, 2432.4826241434494], [33867.33232900661, 2436.2271010750264], [33704.660055128545, 1491.1923353242746], [33443.918142370676, 20.734148876945255], [33305.24028669111, -742.699116039963]], [[33305.24028669111, -742.699116039963], [32935.85085767524, -2733.97493736248], [32757.379494237088, -3629.3788362409687], [32227.834626493903, -6234.351260404685], [32228.449032619512, -6210.552745109366], [31933.246288377337, -7601.938489270164], [31466.44879063712, -9651.400474923663], [31220.850401761407, -10678.181050433283]], [[31220.850401761407, -10678.181050433283], [30801.951642003463, -12366.956903777464], [30601.025503745048, -13101.893042729935], [30006.07919477221, -15219.903620970843], [30007.098937453102, -15188.165148708533], [29676.93223078602, -16300.407158640359], [29158.02799479084, -17874.052891224797], [28886.22775881913, -18643.679363730946]], [[28886.22775881913, -18643.679363730946], [28423.511944462563, -19885.037325453508], [28203.372904083288, -20398.33341715549], [27552.964959659028, -21853.700867335807], [27554.570379747845, -21816.069460663944], [27195.33900336485, -22560.216704295744], [26634.709221242345, -23536.469360775533], [26342.464271990877, -23992.588840432436]] … [[96.44826789662763, -1.030276559037398], [93.64265165156847, -0.9712009686005674], [92.35270148883623, -0.9459422887547944], [88.58250577194134, -0.8712588722028961], [88.60768654276386, -0.8736114380655878], [86.5644370339719, -0.8328219359358594], [83.47645323807413, -0.7762045051159709], [81.89794794372926, -0.7477992504602272]], [[81.89794794372926, -0.7477992504602272], [79.47683251104422, -0.704862634747859], [78.36290771069726, -0.68649819747908], [75.10769192866714, -0.6322293729281908], [75.12887786432862, -0.633914174147881], [73.36466973669259, -0.6043007375247037], [70.69656878655826, -0.5631610595925243], [69.33232988127035, -0.5425274063640977]], [[69.33232988127035, -0.5425274063640977], [67.23775305196054, -0.5113169784925528], [66.27318555860829, -0.49796226325100473], [63.45467072377715, -0.45852342465392454], [63.4724295327919, -0.45972591207968944], [61.944635425878424, -0.43822769356396335], [59.63181075352842, -0.40832978299326644], [58.44867277529549, -0.3933396361773404]], [[58.44867277529549, -0.3933396361773404], [56.62967875677411, -0.37064615970634796], [55.79095975188993, -0.3609303841541758], [53.33999675565769, -0.33225980117127646], [53.354812688815066, -0.33311419171748297], [52.02566095516888, -0.3175054576151056], [50.01062016689464, -0.295767658385857], [48.978959499192605, -0.284872772948979]], [[48.978959499192605, -0.284872772948979], [47.389777552888745, -0.26836018161206443], [46.65568095427983, -0.26128518909333737], [44.50957103493481, -0.24042523966423163], [44.52185654747619, -0.24102861519231908], [43.35688647083385, -0.22968877376398777], [41.58673792068361, -0.21386532600579225], [40.67909728975008, -0.2059370556551961]], [[40.67909728975008, -0.2059370556551961], [39.276828482917615, -0.19390051634758598], [38.62725862524166, -0.18873727963197803], [36.72611528647441, -0.17352686286473795], [36.736220666180024, -0.1739494036218247], [35.70209358728581, -0.16569376565143865], [34.12480868157794, -0.15413943762304236], [33.31376325602257, -0.1483498577367559]], [[33.31376325602257, -0.1483498577367559], [32.05457391255425, -0.13953508203384063], [31.468588455857788, -0.13574593876536037], [29.748830938296567, -0.12458785889460779], [29.757052583328907, -0.12488029383379201], [28.81742621558581, -0.11883093482278574], [27.374393570650785, -0.11031817642896073], [26.6280872133834, -0.10604622580830014]], [[26.6280872133834, -0.10604622580830014], [25.4585468075365, -0.09950193638947195], [24.909669670731635, -0.09667540778912752], [23.28784821254744, -0.08833538555438727], [23.29444220304359, -0.08853457087947011], [22.39908987434295, -0.08400381870783402], [21.00424076264503, -0.07754450348837857], [20.273129062730874, -0.07427760394074773]], [[20.273129062730874, -0.07427760394074773], [19.099625939818875, -0.06917045447224451], [18.53866904768106, -0.06693137116733593], [16.84845645636816, -0.06022673873561894], [16.853739884613105, -0.06036126055108096], [15.892596250518114, -0.056640106122944615], [14.33563015438394, -0.05107810396608638], [13.484594910556508, -0.048136060562706834]], [[13.484594910556508, -0.048136060562706834], [12.648249118103454, -0.04529076322681775], [12.227662990338548, -0.0439167833925043], [10.910873287058834, -0.039599086914452804], [10.911869251793506, -0.039619771554836744], [10.117512251926845, -0.037028800752404695], [8.73092122974314, -0.032543888220922676], [7.911383794563607, -0.029866690979934878]]], SciMLBase.ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Any}, SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}, SciMLBase.StandardODEProblem}(SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}(GasChromatographySimulator.odesystem_r!, LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, SciMLBase.DEFAULT_OBSERVED, nothing), [0.0, 0.0], (0.0, 11.18), Any[GasChromatographySimulator.Column(11.18, 0.000104, [0.000104], 1.04e-7, [1.04e-7], "FS5ms", "H2"), GasChromatographySimulator.Program{GasChromatographySimulator.var"#gf#5"{Matrix{Float64}}}([0.0, 60.0, 1680.0, 60.0, 360.0, 60.0], [40.0, 40.0, 180.0, 180.0, 300.0, 300.0], [411564.0, 411564.0, 411564.0, 411564.0, 411564.0, 411564.0], [101300.0, 101300.0, 101300.0, 101300.0, 101300.0, 101300.0], GasChromatographySimulator.var"#gf#5"{Matrix{Float64}}([0.0 0.0 11.18 0.0; 0.0 0.0 11.18 0.0; … ; 0.0 0.0 11.18 0.0; 0.0 0.0 11.18 0.0]), [0.0 0.0 11.18 0.0; 0.0 0.0 11.18 0.0; … ; 0.0 0.0 11.18 0.0; 0.0 0.0 11.18 0.0], 11181×6 extrapolate(interpolate((0.0:0.001:11.18,::Vector{Float64}), ::Matrix{Float64}, Gridded(Linear())), Flat()) with element type Float64:
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
⋮ ⋮
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15, 6-element extrapolate(interpolate((::Vector{Float64},), ::Vector{Float64}, Gridded(Linear())), Flat()) with element type Float64:
411564.0
411564.0
411564.0
411564.0
411564.0
411564.0, 6-element extrapolate(interpolate((::Vector{Float64},), ::Vector{Float64}, Gridded(Linear())), Flat()) with element type Float64:
101300.0
101300.0
101300.0
101300.0
101300.0
101300.0), GasChromatographySimulator.Substance("C17", "629-78-7", 501.05999999999995, 38.95, 145.36, 0.001, "Leppert2020b, alkane, alkanes", 9.036687565381776e-5, 0.0, 0.0), GasChromatographySimulator.Options(OwrenZen5(), 1.0e-6, 0.001, "inlet", true, true, "Blumberg", "Pressure")], Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}(), SciMLBase.StandardODEProblem()), OwrenZen5(), OrdinaryDiffEq.InterpolationData{SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}}(SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}(GasChromatographySimulator.odesystem_r!, LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, SciMLBase.DEFAULT_OBSERVED, nothing), [[0.0, 0.0], [3.4454018293551445, 20.15187020891205], [37.898623967543834, 221.66125914130734], [56.781421633138926, 332.09903631025884], [59.58219619947376, 348.4794071082316], [60.0076904816268, 350.967911711573], [64.1908817179444, 351.27557922334563], [72.22861795779541, 349.7654120296449], [81.95398347967667, 344.8964219817852], [93.57390532543772, 335.76368738892205] … [1067.2724610921673, 2.2184072721758628], [1101.9587192036608, 1.9250298842666953], [1136.9273543701881, 1.671139252520013], [1172.041128516911, 1.4513726653914871], [1207.0899943986274, 1.2611563253845477], [1241.744424094035, 1.096648642302752], [1275.464275173265, 0.9547680278020901], [1307.2969098690098, 0.8334476273236873], [1335.3325055801088, 0.7327291168899536], [1348.3277146734981, 0.6854909058106784]], [0.0, 9.999999999999999e-5, 0.0010999999999999998, 0.0016480884116323094, 0.0017293842243021817, 0.001741734726169323, 0.001865239744840736, 0.002114552008714646, 0.00243849328109591, 0.002859908268289787 … 2.43013963359493, 2.890910631867321, 3.4407187720498307, 4.097469542910511, 4.883016968340457, 5.824276454439865, 6.954921276010912, 8.31862994232289, 9.98150441211527, 11.18], [[[0.0, 0.0]], [[34454.09067019658, 201519.54873973038], [34454.066544673515, 201519.2665228601], [34454.05448190562, 201519.12541442472], [34454.01829357718, 201518.70208912512], [34454.0182935768, 201518.70208912063], [34453.9976145145, 201518.46018894453], [34453.964011011965, 201518.06710116068], [34453.945916804725, 201517.8554385079]], [[34453.945916804725, 201517.8554385079], [34453.704659800176, 201515.03326980377], [34453.58403066437, 201513.6221854516], [34453.22214072288, 201509.38893239535], [34453.22214072287, 201509.3889323953], [34453.01534476391, 201506.96993064886], [34452.67929868323, 201503.0390528109], [34452.49834943598, 201500.92242628278]], [[34452.49834943598, 201500.92242628278], [34452.366113920936, 201499.3756283204], [34452.29999597308, 201498.60222933913], [34452.10164136819, 201496.2820323955], [34452.10164136819, 201496.2820323955], [34451.98829536693, 201494.9562055705], [34451.80410731955, 201492.80173697995], [34451.70492873233, 201491.64163850818]], [[34451.70492873233, 201491.64163850818], [34451.68531433539, 201491.41220800983], [34451.675507132735, 201491.2974927607], [34451.646085508, 201490.9533470132], [34451.646085508, 201490.9533470132], [34451.62927313974, 201490.7566923005], [34451.601953023805, 201490.4371283921], [34451.58724218317, 201490.2650555183]], [[34451.58724218317, 201490.2650555183], [34451.5842623444, 201490.23020031853], [34451.58277242492, 201490.2127727187], [34451.578302666065, 201490.16048991878], [34451.578302666065, 201490.16048991878], [34451.57574851789, 201490.1306140332], [34451.57159802672, 201490.08206571918], [34449.427296253605, 5957.217389567348]], [[34449.427296253605, 5957.217389567348], [34252.504971021546, 4731.248052332579], [34155.76069143917, 4149.435118222114], [33867.245374456244, 2432.4826241434494], [33867.33232900661, 2436.2271010750264], [33704.660055128545, 1491.1923353242746], [33443.918142370676, 20.734148876945255], [33305.24028669111, -742.699116039963]], [[33305.24028669111, -742.699116039963], [32935.85085767524, -2733.97493736248], [32757.379494237088, -3629.3788362409687], [32227.834626493903, -6234.351260404685], [32228.449032619512, -6210.552745109366], [31933.246288377337, -7601.938489270164], [31466.44879063712, -9651.400474923663], [31220.850401761407, -10678.181050433283]], [[31220.850401761407, -10678.181050433283], [30801.951642003463, -12366.956903777464], [30601.025503745048, -13101.893042729935], [30006.07919477221, -15219.903620970843], [30007.098937453102, -15188.165148708533], [29676.93223078602, -16300.407158640359], [29158.02799479084, -17874.052891224797], [28886.22775881913, -18643.679363730946]], [[28886.22775881913, -18643.679363730946], [28423.511944462563, -19885.037325453508], [28203.372904083288, -20398.33341715549], [27552.964959659028, -21853.700867335807], [27554.570379747845, -21816.069460663944], [27195.33900336485, -22560.216704295744], [26634.709221242345, -23536.469360775533], [26342.464271990877, -23992.588840432436]] … [[96.44826789662763, -1.030276559037398], [93.64265165156847, -0.9712009686005674], [92.35270148883623, -0.9459422887547944], [88.58250577194134, -0.8712588722028961], [88.60768654276386, -0.8736114380655878], [86.5644370339719, -0.8328219359358594], [83.47645323807413, -0.7762045051159709], [81.89794794372926, -0.7477992504602272]], [[81.89794794372926, -0.7477992504602272], [79.47683251104422, -0.704862634747859], [78.36290771069726, -0.68649819747908], [75.10769192866714, -0.6322293729281908], [75.12887786432862, -0.633914174147881], [73.36466973669259, -0.6043007375247037], [70.69656878655826, -0.5631610595925243], [69.33232988127035, -0.5425274063640977]], [[69.33232988127035, -0.5425274063640977], [67.23775305196054, -0.5113169784925528], [66.27318555860829, -0.49796226325100473], [63.45467072377715, -0.45852342465392454], [63.4724295327919, -0.45972591207968944], [61.944635425878424, -0.43822769356396335], [59.63181075352842, -0.40832978299326644], [58.44867277529549, -0.3933396361773404]], [[58.44867277529549, -0.3933396361773404], [56.62967875677411, -0.37064615970634796], [55.79095975188993, -0.3609303841541758], [53.33999675565769, -0.33225980117127646], [53.354812688815066, -0.33311419171748297], [52.02566095516888, -0.3175054576151056], [50.01062016689464, -0.295767658385857], [48.978959499192605, -0.284872772948979]], [[48.978959499192605, -0.284872772948979], [47.389777552888745, -0.26836018161206443], [46.65568095427983, -0.26128518909333737], [44.50957103493481, -0.24042523966423163], [44.52185654747619, -0.24102861519231908], [43.35688647083385, -0.22968877376398777], [41.58673792068361, -0.21386532600579225], [40.67909728975008, -0.2059370556551961]], [[40.67909728975008, -0.2059370556551961], [39.276828482917615, -0.19390051634758598], [38.62725862524166, -0.18873727963197803], [36.72611528647441, -0.17352686286473795], [36.736220666180024, -0.1739494036218247], [35.70209358728581, -0.16569376565143865], [34.12480868157794, -0.15413943762304236], [33.31376325602257, -0.1483498577367559]], [[33.31376325602257, -0.1483498577367559], [32.05457391255425, -0.13953508203384063], [31.468588455857788, -0.13574593876536037], [29.748830938296567, -0.12458785889460779], [29.757052583328907, -0.12488029383379201], [28.81742621558581, -0.11883093482278574], [27.374393570650785, -0.11031817642896073], [26.6280872133834, -0.10604622580830014]], [[26.6280872133834, -0.10604622580830014], [25.4585468075365, -0.09950193638947195], [24.909669670731635, -0.09667540778912752], [23.28784821254744, -0.08833538555438727], [23.29444220304359, -0.08853457087947011], [22.39908987434295, -0.08400381870783402], [21.00424076264503, -0.07754450348837857], [20.273129062730874, -0.07427760394074773]], [[20.273129062730874, -0.07427760394074773], [19.099625939818875, -0.06917045447224451], [18.53866904768106, -0.06693137116733593], [16.84845645636816, -0.06022673873561894], [16.853739884613105, -0.06036126055108096], [15.892596250518114, -0.056640106122944615], [14.33563015438394, -0.05107810396608638], [13.484594910556508, -0.048136060562706834]], [[13.484594910556508, -0.048136060562706834], [12.648249118103454, -0.04529076322681775], [12.227662990338548, -0.0439167833925043], [10.910873287058834, -0.039599086914452804], [10.911869251793506, -0.039619771554836744], [10.117512251926845, -0.037028800752404695], [8.73092122974314, -0.032543888220922676], [7.911383794563607, -0.029866690979934878]]], true, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}([1348.3277146734981, 0.6854909058106784], [1335.3325055801088, 0.7327291168899536], [13.484594910556508, -0.048136060562706834], [12.648249118103454, -0.04529076322681775], [12.227662990338548, -0.0439167833925043], [10.910873287058834, -0.039599086914452804], [10.911869251793506, -0.039619771554836744], [10.117512251926845, -0.037028800752404695], [8.73092122974314, -0.032543888220922676], [7.911383794563607, -0.029866690979934878], [0.004359831011878889, -1.8248976177866655e-5], [1347.079272356587, 0.6901786145383846], [0.003233507500383269, -0.02487154422223056], OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}(0.16666666666666666, 0.0625, 0.1875, 0.25, -0.75, -0.75, 3.75, -3.0, 0.5, 0.26895043731778423, -0.7084548104956269, 0.8658892128279884, 0.15462307371928363, 0.06184922948771345, -0.02947695035460993, 0.18500664893617022, 0.4802345261121857, -0.5337849069148937, -0.013090093085106383, 0.7861107753062541, 0.08783068783068783, 0.3006060606060606, 0.22777777777777777, 0.027777777777777776, 0.06218596218596219, 0.2938217338217338, 0.16666666666666666, 0.25, 0.5, 0.5, 0.6428571428571429, 0.875, -0.19894179894179895, 0.9115151515151515, -1.9777777777777779, -0.1111111111111111, 1.67013727013727, -0.2938217338217338, 1.892063492063492, -6.067155067155067, 7.282458282458283, -4.0195360195360195, -7.214545454545455, 20.676923076923078, -20.31142191142191, 7.14965034965035, 7.866666666666666, -18.78205128205128, 13.508547008547009, -2.3653846153846154, 2.0, -5.294871794871795, 4.534188034188034, -1.2115384615384615, -1.4924630924630924, 1.5785667324128863, 1.1958838881915805, -1.219801565955412, -7.051721611721612, 16.273203719357564, -11.978886071193763, 3.0512256973795435, 4.0, -8.384615384615385, 5.769230769230769, -1.3846153846153846))), true, 0, DiffEqBase.DEStats
Number of function 1 evaluations: 514
Number of function 2 evaluations: 0
Number of W matrix evaluations: 0
Number of linear solves: 0
Number of Jacobians created: 0
Number of nonlinear solver iterations: 0
Number of nonlinear solver convergence failures: 0
Number of rootfind condition calls: 0
Number of accepted steps: 55
Number of rejected steps: 18, :Success), SciMLBase.ODESolution{Float64, 2, Vector{Vector{Float64}}, Nothing, Nothing, Vector{Float64}, Vector{Vector{Vector{Float64}}}, SciMLBase.ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Any}, SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}, SciMLBase.StandardODEProblem}, OwrenZen5, OrdinaryDiffEq.InterpolationData{SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}}, DiffEqBase.DEStats}([[0.0, 0.0], [9.045437680539045, 142.36121666537568], [38.3778488232054, 604.0039439052795], [51.32714578675067, 807.802057722045], [60.35392737318195, 949.8662699262217], [97.97210236452028, 864.7912211500826], [111.24185198630585, 818.1453503610187], [135.36744892314962, 726.7385415531794], [153.9964149623712, 655.9060513256161], [177.80293022607793, 569.9370005885305] … [1211.713591181078, 2.1073352093988444], [1247.0256889150194, 1.829623393062066], [1282.5752147793426, 1.5891893973819067], [1318.195751046774, 1.3809949010482636], [1353.6304502093392, 1.2007619386270945], [1388.4699163858359, 1.0449438215878095], [1422.0250051125997, 0.9108206576507973], [1453.0241952575607, 0.7969770838074718], [1478.671203206373, 0.7054936684960241], [1481.9646653957764, 0.693293702918449]], nothing, nothing, [0.0, 9.999999999999999e-5, 0.00042428140699718756, 0.0005674424125426281, 0.0006672385426463825, 0.0011590908659365714, 0.0013733125276813834, 0.0018285992938707973, 0.0022470865097864337, 0.002882013330616328 … 2.6145675358561253, 3.110810510367421, 3.703274713903305, 4.411448962263332, 5.2592022290868305, 6.276096091614412, 7.499529081412798, 8.979760939572165, 10.814665833372016, 11.18], [[[0.0, 0.0]], [[90454.56682050809, 1.4236181477468181e6], [90454.50348220207, 1.423616154049131e6], [90454.4718130324, 1.4236151572002864e6], [90454.37680545711, 1.4236121666537612e6], [90454.37680545764, 1.4236121666537772e6], [90454.322515369, 1.4236104577700233e6], [90454.2342939066, 1.4236076808339579e6], [90454.1867900066, 1.4236061855606923e6]], [[90454.1867900066, 1.4236061855606923e6], [90453.98139463243, 1.4235997203697804e6], [90453.8786967704, 1.4235964877743237e6], [90453.57060248482, 1.4235867899879552e6], [90453.57060248482, 1.4235867899879552e6], [90453.39454813617, 1.4235812483957445e6], [90453.10845908879, 1.4235722433084017e6], [90452.9544107654, 1.4235673944152172e6]], [[90452.9544107654, 1.4235673944152172e6], [90452.86373337949, 1.4235645402175598e6], [90452.81839465244, 1.4235631131187312e6], [90452.68237833498, 1.423558831822246e6], [90452.68237833498, 1.423558831822246e6], [90452.60465463315, 1.4235563853671108e6], [90452.47835347528, 1.4235524098775173e6], [90452.41034508643, 1.4235502692292747e6]], [[90452.41034508643, 1.4235502692292747e6], [90452.3471344012, 1.4235482795961364e6], [90452.31552904205, 1.423547284779568e6], [90452.22071289824, 1.4235443003298598e6], [90452.22071289824, 1.4235443003298598e6], [90452.16653220002, 1.4235425949300271e6], [90452.0784884962, 1.4235398236552994e6], [90176.94771710748, -59477.58507562522]], [[90176.94771710748, -59477.58507562522], [84632.90577177297, -128234.77572756773], [82358.82160473928, -143953.29930220684], [75766.17683962283, -193760.9149958745], [76045.32180679955, -166410.85178073042], [72493.58591877193, -208133.94578119752], [67818.3081753992, -213638.1375173207], [65510.605837940966, -218169.5150193835]], [[65510.605837940966, -218169.5150193835], [64239.22052090728, -218852.39157195832], [63640.73999096939, -218827.79195286904], [61877.088528344255, -218378.008375242], [61883.56392306624, -218215.58327036037], [60914.92526154922, -217683.90729734197], [59417.36592646606, -215990.80708429043], [58641.33382320477, -214877.21930490353]], [[58641.33382320477, -214877.21930490353], [56515.71880641415, -211078.575437263], [55567.659230259436, -208763.61532563652], [52802.58398473863, -201331.50241493277], [52840.21367168375, -200926.16255031113], [51351.170106050085, -196691.2340865049], [49169.4331775058, -188779.6713292643], [48067.16895975329, -184551.64016955724]], [[48067.16895975329, -184551.64016955724], [46769.23215320708, -179263.32622896443], [46172.83603360896, -176756.6201368943], [44424.61726256349, -169093.78428863664], [44437.39917963022, -169158.53153282986], [43487.501249497065, -164825.5441910209], [42051.9826392558, -158090.87249195593], [41317.256616932274, -154563.6571073198]], [[41317.256616932274, -154563.6571073198], [39886.661702919584, -147498.653601207], [39245.25280801977, -144367.8965980087], [37373.18346288431, -134859.65314925625], [37396.300683831134, -135138.28926737592], [36386.96786228277, -129796.62456495874], [34899.68823633659, -122125.87821612632], [34146.72043380092, -118199.3563803714]] … [[91.35134965820787, -0.905623667333193], [88.67669307652542, -0.8536861727969969], [87.4466605304086, -0.8314771430570745], [83.85185438157731, -0.7658250152953022], [83.8756354473996, -0.7678821707518975], [81.92745501603264, -0.7320374718340253], [78.98244941337497, -0.6822688107326016], [77.47690518681867, -0.6573026666373849]], [[77.47690518681867, -0.6573026666373849], [75.16652468980487, -0.6195496521156719], [74.10321076552731, -0.6034001579064283], [70.9960630909641, -0.5556886220927162], [71.01604685658873, -0.5571602768820891], [69.33202626382618, -0.5311354432376278], [66.78434016173668, -0.49496767057699176], [65.481475354588, -0.4768301566323094]], [[65.481475354588, -0.4768301566323094], [63.47985039801903, -0.4493825709504078], [62.55768269761283, -0.4376359145420761], [59.86307444968053, -0.4029559313156942], [59.87979748503997, -0.4040047267308123], [58.41898451477106, -0.3851095263875515], [56.20645065747694, -0.35881891556342543], [55.07430914067698, -0.34563931473029175]], [[55.07430914067698, -0.34563931473029175], [53.33224137601247, -0.32567528131289125], [52.52847922022908, -0.3171260027686545], [50.17942327065746, -0.2919058684619767], [50.19334358338046, -0.29264951277742346], [48.91906913793368, -0.27892689296113843], [46.9857090583981, -0.2598030111338266], [45.99537280005457, -0.2502194879699041]], [[45.99537280005457, -0.2502194879699041], [44.46800708279924, -0.23568327291154484], [43.76177579548332, -0.22945278597375213], [41.69642732147024, -0.21108896296862514], [41.70793501286894, -0.2116125946347737], [40.586060162612625, -0.20163587459045587], [38.87917525647207, -0.18770040228281215], [38.00314480241658, -0.1807183722598631]], [[38.00314480241658, -0.1807183722598631], [36.647181537409374, -0.17010618122574653], [36.018058931089385, -0.16555099138981894], [34.175176226144245, -0.15213490304882055], [34.18460229950003, -0.1525000715651827], [33.18072724599302, -0.14522229786789692], [31.64602019799436, -0.13501852607389483], [30.855372217612203, -0.12990390375636113]], [[30.855372217612203, -0.12990390375636113], [29.623832105181528, -0.1221002845715135], [29.04908029834768, -0.11874110151006409], [27.358736486965128, -0.10884546663428935], [27.366361617358823, -0.10909671028877972], [26.43979278276568, -0.10373075484985742], [25.01020750386054, -0.0961503058549378], [24.267751430250605, -0.09233884359932382]], [[24.267751430250605, -0.09233884359932382], [23.095968871177373, -0.08646788530244848], [22.542830115317678, -0.0839219699906924], [20.89920366739292, -0.07638489614258556], [20.90528529053791, -0.07655492538355425], [19.990181600303323, -0.07244211948939383], [18.548553210219765, -0.06650786956096244], [17.78432514530473, -0.06347667702290982]], [[17.78432514530473, -0.06347667702290982], [16.522453792900006, -0.05860186371307366], [15.90973057660977, -0.05642845537717812], [14.02481966116709, -0.04977045184421276], [14.029950570211858, -0.04988927975194132], [12.922404306702436, -0.04605557381084421], [11.043666788193631, -0.039932185556087685], [9.955175473449557, -0.03642474582215149]], [[9.955175473449557, -0.03642474582215149], [9.652809478247148, -0.03545071362313018], [9.499575659918312, -0.03495987733022027], [9.027830375953453, -0.0334399094809219], [9.027851270637008, -0.03344033992819901], [8.749850972764044, -0.0325416379236638], [8.28291372195464, -0.031026394555652422], [8.022584032155352, -0.03017713227719846]]], SciMLBase.ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Any}, SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}, SciMLBase.StandardODEProblem}(SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}(GasChromatographySimulator.odesystem_r!, LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, SciMLBase.DEFAULT_OBSERVED, nothing), [0.0, 0.0], (0.0, 11.18), Any[GasChromatographySimulator.Column(11.18, 0.000104, [0.000104], 1.04e-7, [1.04e-7], "FS5ms", "H2"), GasChromatographySimulator.Program{GasChromatographySimulator.var"#gf#5"{Matrix{Float64}}}([0.0, 60.0, 1680.0, 60.0, 360.0, 60.0], [40.0, 40.0, 180.0, 180.0, 300.0, 300.0], [411564.0, 411564.0, 411564.0, 411564.0, 411564.0, 411564.0], [101300.0, 101300.0, 101300.0, 101300.0, 101300.0, 101300.0], GasChromatographySimulator.var"#gf#5"{Matrix{Float64}}([0.0 0.0 11.18 0.0; 0.0 0.0 11.18 0.0; … ; 0.0 0.0 11.18 0.0; 0.0 0.0 11.18 0.0]), [0.0 0.0 11.18 0.0; 0.0 0.0 11.18 0.0; … ; 0.0 0.0 11.18 0.0; 0.0 0.0 11.18 0.0], 11181×6 extrapolate(interpolate((0.0:0.001:11.18,::Vector{Float64}), ::Matrix{Float64}, Gridded(Linear())), Flat()) with element type Float64:
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
⋮ ⋮
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15, 6-element extrapolate(interpolate((::Vector{Float64},), ::Vector{Float64}, Gridded(Linear())), Flat()) with element type Float64:
411564.0
411564.0
411564.0
411564.0
411564.0
411564.0, 6-element extrapolate(interpolate((::Vector{Float64},), ::Vector{Float64}, Gridded(Linear())), Flat()) with element type Float64:
101300.0
101300.0
101300.0
101300.0
101300.0
101300.0), GasChromatographySimulator.Substance("C18", "593-45-3", 513.25, 39.58, 153.29, 0.001, "Leppert2020b, alkane, alkanes", 8.768068754143736e-5, 0.0, 0.0), GasChromatographySimulator.Options(OwrenZen5(), 1.0e-6, 0.001, "inlet", true, true, "Blumberg", "Pressure")], Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}(), SciMLBase.StandardODEProblem()), OwrenZen5(), OrdinaryDiffEq.InterpolationData{SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}}(SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}(GasChromatographySimulator.odesystem_r!, LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, SciMLBase.DEFAULT_OBSERVED, nothing), [[0.0, 0.0], [9.045437680539045, 142.36121666537568], [38.3778488232054, 604.0039439052795], [51.32714578675067, 807.802057722045], [60.35392737318195, 949.8662699262217], [97.97210236452028, 864.7912211500826], [111.24185198630585, 818.1453503610187], [135.36744892314962, 726.7385415531794], [153.9964149623712, 655.9060513256161], [177.80293022607793, 569.9370005885305] … [1211.713591181078, 2.1073352093988444], [1247.0256889150194, 1.829623393062066], [1282.5752147793426, 1.5891893973819067], [1318.195751046774, 1.3809949010482636], [1353.6304502093392, 1.2007619386270945], [1388.4699163858359, 1.0449438215878095], [1422.0250051125997, 0.9108206576507973], [1453.0241952575607, 0.7969770838074718], [1478.671203206373, 0.7054936684960241], [1481.9646653957764, 0.693293702918449]], [0.0, 9.999999999999999e-5, 0.00042428140699718756, 0.0005674424125426281, 0.0006672385426463825, 0.0011590908659365714, 0.0013733125276813834, 0.0018285992938707973, 0.0022470865097864337, 0.002882013330616328 … 2.6145675358561253, 3.110810510367421, 3.703274713903305, 4.411448962263332, 5.2592022290868305, 6.276096091614412, 7.499529081412798, 8.979760939572165, 10.814665833372016, 11.18], [[[0.0, 0.0]], [[90454.56682050809, 1.4236181477468181e6], [90454.50348220207, 1.423616154049131e6], [90454.4718130324, 1.4236151572002864e6], [90454.37680545711, 1.4236121666537612e6], [90454.37680545764, 1.4236121666537772e6], [90454.322515369, 1.4236104577700233e6], [90454.2342939066, 1.4236076808339579e6], [90454.1867900066, 1.4236061855606923e6]], [[90454.1867900066, 1.4236061855606923e6], [90453.98139463243, 1.4235997203697804e6], [90453.8786967704, 1.4235964877743237e6], [90453.57060248482, 1.4235867899879552e6], [90453.57060248482, 1.4235867899879552e6], [90453.39454813617, 1.4235812483957445e6], [90453.10845908879, 1.4235722433084017e6], [90452.9544107654, 1.4235673944152172e6]], [[90452.9544107654, 1.4235673944152172e6], [90452.86373337949, 1.4235645402175598e6], [90452.81839465244, 1.4235631131187312e6], [90452.68237833498, 1.423558831822246e6], [90452.68237833498, 1.423558831822246e6], [90452.60465463315, 1.4235563853671108e6], [90452.47835347528, 1.4235524098775173e6], [90452.41034508643, 1.4235502692292747e6]], [[90452.41034508643, 1.4235502692292747e6], [90452.3471344012, 1.4235482795961364e6], [90452.31552904205, 1.423547284779568e6], [90452.22071289824, 1.4235443003298598e6], [90452.22071289824, 1.4235443003298598e6], [90452.16653220002, 1.4235425949300271e6], [90452.0784884962, 1.4235398236552994e6], [90176.94771710748, -59477.58507562522]], [[90176.94771710748, -59477.58507562522], [84632.90577177297, -128234.77572756773], [82358.82160473928, -143953.29930220684], [75766.17683962283, -193760.9149958745], [76045.32180679955, -166410.85178073042], [72493.58591877193, -208133.94578119752], [67818.3081753992, -213638.1375173207], [65510.605837940966, -218169.5150193835]], [[65510.605837940966, -218169.5150193835], [64239.22052090728, -218852.39157195832], [63640.73999096939, -218827.79195286904], [61877.088528344255, -218378.008375242], [61883.56392306624, -218215.58327036037], [60914.92526154922, -217683.90729734197], [59417.36592646606, -215990.80708429043], [58641.33382320477, -214877.21930490353]], [[58641.33382320477, -214877.21930490353], [56515.71880641415, -211078.575437263], [55567.659230259436, -208763.61532563652], [52802.58398473863, -201331.50241493277], [52840.21367168375, -200926.16255031113], [51351.170106050085, -196691.2340865049], [49169.4331775058, -188779.6713292643], [48067.16895975329, -184551.64016955724]], [[48067.16895975329, -184551.64016955724], [46769.23215320708, -179263.32622896443], [46172.83603360896, -176756.6201368943], [44424.61726256349, -169093.78428863664], [44437.39917963022, -169158.53153282986], [43487.501249497065, -164825.5441910209], [42051.9826392558, -158090.87249195593], [41317.256616932274, -154563.6571073198]], [[41317.256616932274, -154563.6571073198], [39886.661702919584, -147498.653601207], [39245.25280801977, -144367.8965980087], [37373.18346288431, -134859.65314925625], [37396.300683831134, -135138.28926737592], [36386.96786228277, -129796.62456495874], [34899.68823633659, -122125.87821612632], [34146.72043380092, -118199.3563803714]] … [[91.35134965820787, -0.905623667333193], [88.67669307652542, -0.8536861727969969], [87.4466605304086, -0.8314771430570745], [83.85185438157731, -0.7658250152953022], [83.8756354473996, -0.7678821707518975], [81.92745501603264, -0.7320374718340253], [78.98244941337497, -0.6822688107326016], [77.47690518681867, -0.6573026666373849]], [[77.47690518681867, -0.6573026666373849], [75.16652468980487, -0.6195496521156719], [74.10321076552731, -0.6034001579064283], [70.9960630909641, -0.5556886220927162], [71.01604685658873, -0.5571602768820891], [69.33202626382618, -0.5311354432376278], [66.78434016173668, -0.49496767057699176], [65.481475354588, -0.4768301566323094]], [[65.481475354588, -0.4768301566323094], [63.47985039801903, -0.4493825709504078], [62.55768269761283, -0.4376359145420761], [59.86307444968053, -0.4029559313156942], [59.87979748503997, -0.4040047267308123], [58.41898451477106, -0.3851095263875515], [56.20645065747694, -0.35881891556342543], [55.07430914067698, -0.34563931473029175]], [[55.07430914067698, -0.34563931473029175], [53.33224137601247, -0.32567528131289125], [52.52847922022908, -0.3171260027686545], [50.17942327065746, -0.2919058684619767], [50.19334358338046, -0.29264951277742346], [48.91906913793368, -0.27892689296113843], [46.9857090583981, -0.2598030111338266], [45.99537280005457, -0.2502194879699041]], [[45.99537280005457, -0.2502194879699041], [44.46800708279924, -0.23568327291154484], [43.76177579548332, -0.22945278597375213], [41.69642732147024, -0.21108896296862514], [41.70793501286894, -0.2116125946347737], [40.586060162612625, -0.20163587459045587], [38.87917525647207, -0.18770040228281215], [38.00314480241658, -0.1807183722598631]], [[38.00314480241658, -0.1807183722598631], [36.647181537409374, -0.17010618122574653], [36.018058931089385, -0.16555099138981894], [34.175176226144245, -0.15213490304882055], [34.18460229950003, -0.1525000715651827], [33.18072724599302, -0.14522229786789692], [31.64602019799436, -0.13501852607389483], [30.855372217612203, -0.12990390375636113]], [[30.855372217612203, -0.12990390375636113], [29.623832105181528, -0.1221002845715135], [29.04908029834768, -0.11874110151006409], [27.358736486965128, -0.10884546663428935], [27.366361617358823, -0.10909671028877972], [26.43979278276568, -0.10373075484985742], [25.01020750386054, -0.0961503058549378], [24.267751430250605, -0.09233884359932382]], [[24.267751430250605, -0.09233884359932382], [23.095968871177373, -0.08646788530244848], [22.542830115317678, -0.0839219699906924], [20.89920366739292, -0.07638489614258556], [20.90528529053791, -0.07655492538355425], [19.990181600303323, -0.07244211948939383], [18.548553210219765, -0.06650786956096244], [17.78432514530473, -0.06347667702290982]], [[17.78432514530473, -0.06347667702290982], [16.522453792900006, -0.05860186371307366], [15.90973057660977, -0.05642845537717812], [14.02481966116709, -0.04977045184421276], [14.029950570211858, -0.04988927975194132], [12.922404306702436, -0.04605557381084421], [11.043666788193631, -0.039932185556087685], [9.955175473449557, -0.03642474582215149]], [[9.955175473449557, -0.03642474582215149], [9.652809478247148, -0.03545071362313018], [9.499575659918312, -0.03495987733022027], [9.027830375953453, -0.0334399094809219], [9.027851270637008, -0.03344033992819901], [8.749850972764044, -0.0325416379236638], [8.28291372195464, -0.031026394555652422], [8.022584032155352, -0.03017713227719846]]], true, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}([1481.9646653957764, 0.693293702918449], [1478.671203206373, 0.7054936684960241], [9.955175473449557, -0.03642474582215149], [9.652809478247148, -0.03545071362313018], [9.499575659918312, -0.03495987733022027], [9.027830375953453, -0.0334399094809219], [9.027851270637008, -0.03344033992819901], [8.749850972764044, -0.0325416379236638], [8.28291372195464, -0.031026394555652422], [8.022584032155352, -0.03017713227719846], [4.453118656898261e-5, -1.912594401817395e-7], [1481.5922935676956, 0.6946915615602365], [3.0048730283565666e-5, -0.0002707164249453084], OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}(0.16666666666666666, 0.0625, 0.1875, 0.25, -0.75, -0.75, 3.75, -3.0, 0.5, 0.26895043731778423, -0.7084548104956269, 0.8658892128279884, 0.15462307371928363, 0.06184922948771345, -0.02947695035460993, 0.18500664893617022, 0.4802345261121857, -0.5337849069148937, -0.013090093085106383, 0.7861107753062541, 0.08783068783068783, 0.3006060606060606, 0.22777777777777777, 0.027777777777777776, 0.06218596218596219, 0.2938217338217338, 0.16666666666666666, 0.25, 0.5, 0.5, 0.6428571428571429, 0.875, -0.19894179894179895, 0.9115151515151515, -1.9777777777777779, -0.1111111111111111, 1.67013727013727, -0.2938217338217338, 1.892063492063492, -6.067155067155067, 7.282458282458283, -4.0195360195360195, -7.214545454545455, 20.676923076923078, -20.31142191142191, 7.14965034965035, 7.866666666666666, -18.78205128205128, 13.508547008547009, -2.3653846153846154, 2.0, -5.294871794871795, 4.534188034188034, -1.2115384615384615, -1.4924630924630924, 1.5785667324128863, 1.1958838881915805, -1.219801565955412, -7.051721611721612, 16.273203719357564, -11.978886071193763, 3.0512256973795435, 4.0, -8.384615384615385, 5.769230769230769, -1.3846153846153846))), true, 0, DiffEqBase.DEStats
Number of function 1 evaluations: 458
Number of function 2 evaluations: 0
Number of W matrix evaluations: 0
Number of linear solves: 0
Number of Jacobians created: 0
Number of nonlinear solver iterations: 0
Number of nonlinear solver convergence failures: 0
Number of rootfind condition calls: 0
Number of accepted steps: 56
Number of rejected steps: 9, :Success) … SciMLBase.ODESolution{Float64, 2, Vector{Vector{Float64}}, Nothing, Nothing, Vector{Float64}, Vector{Vector{Vector{Float64}}}, SciMLBase.ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Any}, SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}, SciMLBase.StandardODEProblem}, OwrenZen5, OrdinaryDiffEq.InterpolationData{SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}}, DiffEqBase.DEStats}([[0.0, 0.0], [36.46999475176144, 11627.833468878944], [50.98894756823326, 16256.950116220725], [59.677478263546554, 19027.136859996343], [60.01279666732794, 19134.047283264434], [63.30939966152717, 18886.414956402434], [70.35702777289912, 18306.60784896539], [79.12385798185468, 17514.62401047433], [89.48880384295089, 16516.967049644536], [101.4913217675015, 15327.09845355328] … [1745.5033038829256, 1.1399094845752085], [1784.6535115640013, 1.2662873843977431], [1793.8142764606914, 1.2935623344940956], [1800.692523933218, 1.3133903959190998], [1818.7793073262144, 0.8411898101913069], [1825.1344898208872, 0.724238772061658], [1835.086309997159, 0.5765234868736365], [1842.1433532297326, 0.4923271769262027], [1849.09134118721, 0.4221937621150325], [1849.7958097184876, 0.4156588221760513]], nothing, nothing, [0.0, 2.1309474052151082e-5, 2.9792925833424115e-5, 3.4869652311690857e-5, 3.506557957112913e-5, 3.702485216551186e-5, 4.144094191531657e-5, 4.7393935243721895e-5, 5.514606940472515e-5, 6.51884871346913e-5 … 6.095652862425779, 7.324520878476427, 7.635939166009505, 7.877432839400523, 8.653477635990866, 9.001177360874669, 9.662623319778731, 10.262873706230286, 11.072151773996328, 11.18], [[[0.0, 0.0]], [[1.7114458568044365e6, 5.456654561543545e8], [1.7114456014333519e6, 5.456652933128967e8], [1.7114454737477945e6, 5.456652118921678e8], [1.7114450906910675e6, 5.456649676299812e8], [1.7114450906910675e6, 5.456649676299812e8], [1.7114448718014704e6, 5.456648280515885e8], [1.7114445161058155e6, 5.45664601236701e8], [1.7114443245773553e6, 5.456644791056077e8]], [[1.7114443245773553e6, 5.456644791056077e8], [1.7114442229122408e6, 5.456644142772758e8], [1.7114441720796807e6, 5.456643818631098e8], [1.7114440195819747e6, 5.456642846206007e8], [1.7114440195819747e6, 5.456642846206007e8], [1.7114439324404506e6, 5.456642290534706e8], [1.711443790835435e6, 5.456641387568655e8], [1.7114437145865755e6, 5.456640901356165e8]], [[1.7114437145865755e6, 5.456640901356165e8], [1.7114436537474066e6, 5.456640513405936e8], [1.7114436233278029e6, 5.456640319430702e8], [1.7114435320690433e6, 5.456639737505352e8], [1.7114435320690433e6, 5.456639737505352e8], [1.7114434799211968e6, 5.456639404976699e8], [1.7114433951809132e6, 5.456638864617448e8], [1.711443349551528e6, 5.456638573654774e8]], [[1.711443349551528e6, 5.456638573654774e8], [1.7114433472035474e6, 5.456638558682522e8], [1.7114433460295575e6, 5.456638551196396e8], [1.7114433425075684e6, 5.4566385287379e8], [1.7114433425075684e6, 5.4566385287379e8], [1.7114433404950358e6, 5.456638515904682e8], [1.7114433372246316e6, 5.456638495050455e8], [1.7112194333085215e6, -1.240094688514986e8]], [[1.7112194333085215e6, -1.240094688514986e8], [1.7014727162095776e6, -1.2489426434904444e8], [1.6966836656232106e6, -1.2529842574193788e8], [1.68239978722693e6, -1.2646696835060757e8], [1.6824040617452264e6, -1.2646232142375731e8], [1.6743491301542548e6, -1.2708234727045971e8], [1.661436081627466e6, -1.2800510532938278e8], [1.6545671626706596e6, -1.2846510843178523e8]], [[1.6545671626706596e6, -1.2846510843178523e8], [1.6341486508255145e6, -1.2974013681569803e8], [1.6243201671753048e6, -1.3023315221704555e8], [1.5951841130948886e6, -1.3156210159968436e8], [1.5952261811929613e6, -1.3152284562542081e8], [1.5790197033705208e6, -1.321378179967187e8], [1.5534704982410446e6, -1.328176914233566e8], [1.5400577519705452e6, -1.3307428673018616e8]], [[1.5400577519705452e6, -1.3307428673018616e8], [1.5163651240798533e6, -1.333867583872801e8], [1.5050683830144184e6, -1.3340351781710911e8], [1.4716652277257992e6, -1.3329616753307796e8], [1.4717410930330623e6, -1.332476639924826e8], [1.453265418976645e6, -1.3305806523287451e8], [1.4243735891755142e6, -1.324344275650543e8], [1.4092916193273058e6, -1.3200468357900321e8]], [[1.4092916193273058e6, -1.3200468357900321e8], [1.383649311582397e6, -1.3112730203815591e8], [1.3715302047857726e6, -1.3059717615241897e8], [1.3357750529118804e6, -1.2886944579245949e8], [1.3358898972794234e6, -1.2882969201332271e8], [1.316208377089276e6, -1.277608062152164e8], [1.2856680835851151e6, -1.2580757254824108e8], [1.2698053878977094e6, -1.247031373637411e8]], [[1.2698053878977094e6, -1.247031373637411e8], [1.2430696084351363e6, -1.22706964252195e8], [1.2305470152368096e6, -1.2169121093479735e8], [1.1936800508373226e6, -1.185395203828809e8], [1.193840355679632e6, -1.1852610089907902e8], [1.1736382730102343e6, -1.1669911444584191e8], [1.1425447632113395e6, -1.1367536012806511e8], [1.1264736655901023e6, -1.1204529507804316e8]] … [[34.06735036994164, 0.1174563241762398], [34.00826593235557, 0.11704925859874413], [33.97868518607742, 0.11684572580999776], [33.88978803003574, 0.11623512744375591], [33.8897880300356, 0.11623512744375492], [33.8388848010054, 0.1158862140916168], [33.75600333777741, 0.11531922989439221], [33.71129045606438, 0.11501393071127126]], [[33.71129045606438, 0.11501393071127126], [33.111286175422926, 0.1109562557254525], [32.80716928019745, 0.10892741823253999], [31.87741533038597, 0.10284090575380882], [31.87741533038597, 0.10284090575380882], [31.333743255673074, 0.09936289862310531], [30.429565985986695, 0.09371113703571204], [29.931390079291603, 0.09066788079634644]], [[29.931390079291603, 0.09066788079634644], [29.761175721334887, 0.0896395895730862], [29.675702425299068, 0.08912544396145604], [29.417792520702275, 0.08758300712656568], [29.417792520702275, 0.08758300712656568], [29.2693951007883, 0.08670161464948549], [29.02663122591675, 0.08526935187423011], [28.895067425141228, 0.08449813345678492]], [[28.895067425141228, 0.08449813345678492], [28.758403899038697, 0.08370073062348317], [28.6898280141, 0.08330202920683229], [28.483109757430217, 0.08210592495687961], [28.483109757430217, 0.08210592495687961], [28.364308634210985, 0.08142243681404951], [28.170188256676457, 0.08031176858195134], [27.797832448138347, -0.9297602160723988]], [[27.797832448138347, -0.9297602160723988], [26.030199170314006, -0.780000328144288], [25.277019962984756, -0.7293126898909018], [23.107527031577213, -0.5788872627383584], [23.159563473466427, -0.6033074046814156], [22.005200174575197, -0.5133463440533983], [20.391003791840863, -0.432351816360711], [19.586688840851643, -0.3924800173404359]], [[19.586688840851643, -0.3924800173404359], [19.125929839938685, -0.3713531132670189], [18.90621926343602, -0.3619305804573749], [18.257867552467644, -0.3344621948357066], [18.259176692597702, -0.334799059804443], [17.900973177520207, -0.32006523463056624], [17.340542590272587, -0.29847866899931036], [17.04786413039238, -0.28761788356700313]], [[17.04786413039238, -0.28761788356700313], [16.3242453774307, -0.26164276889243376], [15.988481572673644, -0.25091917833381205], [15.002633519420883, -0.2199515449895129], [15.007803163443368, -0.22102195786748935], [14.46885751000141, -0.20458405386035677], [13.64120686484432, -0.18266328425236575], [13.212346856183274, -0.171940325018909]], [[13.212346856183274, -0.171940325018909], [12.704221744268681, -0.15979667575143744], [12.46160824214808, -0.15448568130838045], [11.74035514533846, -0.1390642296829387], [11.742047501193603, -0.13930669319878544], [11.339666854604957, -0.1310822939187008], [10.703156185990803, -0.11922476918130925], [10.366210241124326, -0.11328472818274955]], [[10.366210241124326, -0.11328472818274955], [9.763883958491414, -0.1031413319403854], [9.47275984968753, -0.09872406375391757], [8.58926081751441, -0.08579201555167748], [8.591350953074075, -0.08600848384125344], [8.083268052105018, -0.07901543795540153], [7.247991035238013, -0.06871678309858116], [6.7850683665652705, -0.06338413974229086]], [[6.7850683665652705, -0.06338413974229086], [6.701417003379618, -0.062448337469439605], [6.6595043934235045, -0.0619845343647822], [6.532838824034314, -0.06059075044606307], [6.532841238661442, -0.060590934376008515], [6.459925408189431, -0.059796482618993604], [6.34055116311933, -0.05850842708072013], [6.275788201411815, -0.05781584072390198]]], SciMLBase.ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Any}, SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}, SciMLBase.StandardODEProblem}(SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}(GasChromatographySimulator.odesystem_r!, LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, SciMLBase.DEFAULT_OBSERVED, nothing), [0.0, 0.0], (0.0, 11.18), Any[GasChromatographySimulator.Column(11.18, 0.000104, [0.000104], 1.04e-7, [1.04e-7], "FS5ms", "H2"), GasChromatographySimulator.Program{GasChromatographySimulator.var"#gf#5"{Matrix{Float64}}}([0.0, 60.0, 1680.0, 60.0, 360.0, 60.0], [40.0, 40.0, 180.0, 180.0, 300.0, 300.0], [411564.0, 411564.0, 411564.0, 411564.0, 411564.0, 411564.0], [101300.0, 101300.0, 101300.0, 101300.0, 101300.0, 101300.0], GasChromatographySimulator.var"#gf#5"{Matrix{Float64}}([0.0 0.0 11.18 0.0; 0.0 0.0 11.18 0.0; … ; 0.0 0.0 11.18 0.0; 0.0 0.0 11.18 0.0]), [0.0 0.0 11.18 0.0; 0.0 0.0 11.18 0.0; … ; 0.0 0.0 11.18 0.0; 0.0 0.0 11.18 0.0], 11181×6 extrapolate(interpolate((0.0:0.001:11.18,::Vector{Float64}), ::Matrix{Float64}, Gridded(Linear())), Flat()) with element type Float64:
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
⋮ ⋮
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15, 6-element extrapolate(interpolate((::Vector{Float64},), ::Vector{Float64}, Gridded(Linear())), Flat()) with element type Float64:
411564.0
411564.0
411564.0
411564.0
411564.0
411564.0, 6-element extrapolate(interpolate((::Vector{Float64},), ::Vector{Float64}, Gridded(Linear())), Flat()) with element type Float64:
101300.0
101300.0
101300.0
101300.0
101300.0
101300.0), GasChromatographySimulator.Substance("C21", "629-94-7", 546.54, 41.43, 179.47, 0.001, "Leppert2020b, alkane, alkanes", 8.077845767414391e-5, 0.0, 0.0), GasChromatographySimulator.Options(OwrenZen5(), 1.0e-6, 0.001, "inlet", true, true, "Blumberg", "Pressure")], Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}(), SciMLBase.StandardODEProblem()), OwrenZen5(), OrdinaryDiffEq.InterpolationData{SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}}(SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}(GasChromatographySimulator.odesystem_r!, LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, SciMLBase.DEFAULT_OBSERVED, nothing), [[0.0, 0.0], [36.46999475176144, 11627.833468878944], [50.98894756823326, 16256.950116220725], [59.677478263546554, 19027.136859996343], [60.01279666732794, 19134.047283264434], [63.30939966152717, 18886.414956402434], [70.35702777289912, 18306.60784896539], [79.12385798185468, 17514.62401047433], [89.48880384295089, 16516.967049644536], [101.4913217675015, 15327.09845355328] … [1745.5033038829256, 1.1399094845752085], [1784.6535115640013, 1.2662873843977431], [1793.8142764606914, 1.2935623344940956], [1800.692523933218, 1.3133903959190998], [1818.7793073262144, 0.8411898101913069], [1825.1344898208872, 0.724238772061658], [1835.086309997159, 0.5765234868736365], [1842.1433532297326, 0.4923271769262027], [1849.09134118721, 0.4221937621150325], [1849.7958097184876, 0.4156588221760513]], [0.0, 2.1309474052151082e-5, 2.9792925833424115e-5, 3.4869652311690857e-5, 3.506557957112913e-5, 3.702485216551186e-5, 4.144094191531657e-5, 4.7393935243721895e-5, 5.514606940472515e-5, 6.51884871346913e-5 … 6.095652862425779, 7.324520878476427, 7.635939166009505, 7.877432839400523, 8.653477635990866, 9.001177360874669, 9.662623319778731, 10.262873706230286, 11.072151773996328, 11.18], [[[0.0, 0.0]], [[1.7114458568044365e6, 5.456654561543545e8], [1.7114456014333519e6, 5.456652933128967e8], [1.7114454737477945e6, 5.456652118921678e8], [1.7114450906910675e6, 5.456649676299812e8], [1.7114450906910675e6, 5.456649676299812e8], [1.7114448718014704e6, 5.456648280515885e8], [1.7114445161058155e6, 5.45664601236701e8], [1.7114443245773553e6, 5.456644791056077e8]], [[1.7114443245773553e6, 5.456644791056077e8], [1.7114442229122408e6, 5.456644142772758e8], [1.7114441720796807e6, 5.456643818631098e8], [1.7114440195819747e6, 5.456642846206007e8], [1.7114440195819747e6, 5.456642846206007e8], [1.7114439324404506e6, 5.456642290534706e8], [1.711443790835435e6, 5.456641387568655e8], [1.7114437145865755e6, 5.456640901356165e8]], [[1.7114437145865755e6, 5.456640901356165e8], [1.7114436537474066e6, 5.456640513405936e8], [1.7114436233278029e6, 5.456640319430702e8], [1.7114435320690433e6, 5.456639737505352e8], [1.7114435320690433e6, 5.456639737505352e8], [1.7114434799211968e6, 5.456639404976699e8], [1.7114433951809132e6, 5.456638864617448e8], [1.711443349551528e6, 5.456638573654774e8]], [[1.711443349551528e6, 5.456638573654774e8], [1.7114433472035474e6, 5.456638558682522e8], [1.7114433460295575e6, 5.456638551196396e8], [1.7114433425075684e6, 5.4566385287379e8], [1.7114433425075684e6, 5.4566385287379e8], [1.7114433404950358e6, 5.456638515904682e8], [1.7114433372246316e6, 5.456638495050455e8], [1.7112194333085215e6, -1.240094688514986e8]], [[1.7112194333085215e6, -1.240094688514986e8], [1.7014727162095776e6, -1.2489426434904444e8], [1.6966836656232106e6, -1.2529842574193788e8], [1.68239978722693e6, -1.2646696835060757e8], [1.6824040617452264e6, -1.2646232142375731e8], [1.6743491301542548e6, -1.2708234727045971e8], [1.661436081627466e6, -1.2800510532938278e8], [1.6545671626706596e6, -1.2846510843178523e8]], [[1.6545671626706596e6, -1.2846510843178523e8], [1.6341486508255145e6, -1.2974013681569803e8], [1.6243201671753048e6, -1.3023315221704555e8], [1.5951841130948886e6, -1.3156210159968436e8], [1.5952261811929613e6, -1.3152284562542081e8], [1.5790197033705208e6, -1.321378179967187e8], [1.5534704982410446e6, -1.328176914233566e8], [1.5400577519705452e6, -1.3307428673018616e8]], [[1.5400577519705452e6, -1.3307428673018616e8], [1.5163651240798533e6, -1.333867583872801e8], [1.5050683830144184e6, -1.3340351781710911e8], [1.4716652277257992e6, -1.3329616753307796e8], [1.4717410930330623e6, -1.332476639924826e8], [1.453265418976645e6, -1.3305806523287451e8], [1.4243735891755142e6, -1.324344275650543e8], [1.4092916193273058e6, -1.3200468357900321e8]], [[1.4092916193273058e6, -1.3200468357900321e8], [1.383649311582397e6, -1.3112730203815591e8], [1.3715302047857726e6, -1.3059717615241897e8], [1.3357750529118804e6, -1.2886944579245949e8], [1.3358898972794234e6, -1.2882969201332271e8], [1.316208377089276e6, -1.277608062152164e8], [1.2856680835851151e6, -1.2580757254824108e8], [1.2698053878977094e6, -1.247031373637411e8]], [[1.2698053878977094e6, -1.247031373637411e8], [1.2430696084351363e6, -1.22706964252195e8], [1.2305470152368096e6, -1.2169121093479735e8], [1.1936800508373226e6, -1.185395203828809e8], [1.193840355679632e6, -1.1852610089907902e8], [1.1736382730102343e6, -1.1669911444584191e8], [1.1425447632113395e6, -1.1367536012806511e8], [1.1264736655901023e6, -1.1204529507804316e8]] … [[34.06735036994164, 0.1174563241762398], [34.00826593235557, 0.11704925859874413], [33.97868518607742, 0.11684572580999776], [33.88978803003574, 0.11623512744375591], [33.8897880300356, 0.11623512744375492], [33.8388848010054, 0.1158862140916168], [33.75600333777741, 0.11531922989439221], [33.71129045606438, 0.11501393071127126]], [[33.71129045606438, 0.11501393071127126], [33.111286175422926, 0.1109562557254525], [32.80716928019745, 0.10892741823253999], [31.87741533038597, 0.10284090575380882], [31.87741533038597, 0.10284090575380882], [31.333743255673074, 0.09936289862310531], [30.429565985986695, 0.09371113703571204], [29.931390079291603, 0.09066788079634644]], [[29.931390079291603, 0.09066788079634644], [29.761175721334887, 0.0896395895730862], [29.675702425299068, 0.08912544396145604], [29.417792520702275, 0.08758300712656568], [29.417792520702275, 0.08758300712656568], [29.2693951007883, 0.08670161464948549], [29.02663122591675, 0.08526935187423011], [28.895067425141228, 0.08449813345678492]], [[28.895067425141228, 0.08449813345678492], [28.758403899038697, 0.08370073062348317], [28.6898280141, 0.08330202920683229], [28.483109757430217, 0.08210592495687961], [28.483109757430217, 0.08210592495687961], [28.364308634210985, 0.08142243681404951], [28.170188256676457, 0.08031176858195134], [27.797832448138347, -0.9297602160723988]], [[27.797832448138347, -0.9297602160723988], [26.030199170314006, -0.780000328144288], [25.277019962984756, -0.7293126898909018], [23.107527031577213, -0.5788872627383584], [23.159563473466427, -0.6033074046814156], [22.005200174575197, -0.5133463440533983], [20.391003791840863, -0.432351816360711], [19.586688840851643, -0.3924800173404359]], [[19.586688840851643, -0.3924800173404359], [19.125929839938685, -0.3713531132670189], [18.90621926343602, -0.3619305804573749], [18.257867552467644, -0.3344621948357066], [18.259176692597702, -0.334799059804443], [17.900973177520207, -0.32006523463056624], [17.340542590272587, -0.29847866899931036], [17.04786413039238, -0.28761788356700313]], [[17.04786413039238, -0.28761788356700313], [16.3242453774307, -0.26164276889243376], [15.988481572673644, -0.25091917833381205], [15.002633519420883, -0.2199515449895129], [15.007803163443368, -0.22102195786748935], [14.46885751000141, -0.20458405386035677], [13.64120686484432, -0.18266328425236575], [13.212346856183274, -0.171940325018909]], [[13.212346856183274, -0.171940325018909], [12.704221744268681, -0.15979667575143744], [12.46160824214808, -0.15448568130838045], [11.74035514533846, -0.1390642296829387], [11.742047501193603, -0.13930669319878544], [11.339666854604957, -0.1310822939187008], [10.703156185990803, -0.11922476918130925], [10.366210241124326, -0.11328472818274955]], [[10.366210241124326, -0.11328472818274955], [9.763883958491414, -0.1031413319403854], [9.47275984968753, -0.09872406375391757], [8.58926081751441, -0.08579201555167748], [8.591350953074075, -0.08600848384125344], [8.083268052105018, -0.07901543795540153], [7.247991035238013, -0.06871678309858116], [6.7850683665652705, -0.06338413974229086]], [[6.7850683665652705, -0.06338413974229086], [6.701417003379618, -0.062448337469439605], [6.6595043934235045, -0.0619845343647822], [6.532838824034314, -0.06059075044606307], [6.532841238661442, -0.060590934376008515], [6.459925408189431, -0.059796482618993604], [6.34055116311933, -0.05850842708072013], [6.275788201411815, -0.05781584072390198]]], true, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}([1849.7958097184876, 0.4156588221760513], [1849.09134118721, 0.4221937621150325], [6.7850683665652705, -0.06338413974229086], [6.701417003379618, -0.062448337469439605], [6.6595043934235045, -0.0619845343647822], [6.532838824034314, -0.06059075044606307], [6.532841238661442, -0.060590934376008515], [6.459925408189431, -0.059796482618993604], [6.34055116311933, -0.05850842708072013], [6.275788201411815, -0.05781584072390198], [1.2931770941468877e-7, -9.051245008162246e-10], [1849.7107672816799, 0.4164429506419605], [6.990914285032693e-8, -2.138794523559621e-6], OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}(0.16666666666666666, 0.0625, 0.1875, 0.25, -0.75, -0.75, 3.75, -3.0, 0.5, 0.26895043731778423, -0.7084548104956269, 0.8658892128279884, 0.15462307371928363, 0.06184922948771345, -0.02947695035460993, 0.18500664893617022, 0.4802345261121857, -0.5337849069148937, -0.013090093085106383, 0.7861107753062541, 0.08783068783068783, 0.3006060606060606, 0.22777777777777777, 0.027777777777777776, 0.06218596218596219, 0.2938217338217338, 0.16666666666666666, 0.25, 0.5, 0.5, 0.6428571428571429, 0.875, -0.19894179894179895, 0.9115151515151515, -1.9777777777777779, -0.1111111111111111, 1.67013727013727, -0.2938217338217338, 1.892063492063492, -6.067155067155067, 7.282458282458283, -4.0195360195360195, -7.214545454545455, 20.676923076923078, -20.31142191142191, 7.14965034965035, 7.866666666666666, -18.78205128205128, 13.508547008547009, -2.3653846153846154, 2.0, -5.294871794871795, 4.534188034188034, -1.2115384615384615, -1.4924630924630924, 1.5785667324128863, 1.1958838881915805, -1.219801565955412, -7.051721611721612, 16.273203719357564, -11.978886071193763, 3.0512256973795435, 4.0, -8.384615384615385, 5.769230769230769, -1.3846153846153846))), true, 0, DiffEqBase.DEStats
Number of function 1 evaluations: 927
Number of function 2 evaluations: 0
Number of W matrix evaluations: 0
Number of linear solves: 0
Number of Jacobians created: 0
Number of nonlinear solver iterations: 0
Number of nonlinear solver convergence failures: 0
Number of rootfind condition calls: 0
Number of accepted steps: 88
Number of rejected steps: 44, :Success), SciMLBase.ODESolution{Float64, 2, Vector{Vector{Float64}}, Nothing, Nothing, Vector{Float64}, Vector{Vector{Vector{Float64}}}, SciMLBase.ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Any}, SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}, SciMLBase.StandardODEProblem}, OwrenZen5, OrdinaryDiffEq.InterpolationData{SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}}, DiffEqBase.DEStats}([[0.0, 0.0], [36.10254341543524, 28950.526545726527], [49.78454880584168, 39922.08490389185], [57.563823622059566, 46160.26096541256], [59.68080700665526, 47857.863214077064], [60.00191455833749, 48115.3583362121], [63.15919393411739, 47389.54821161078], [70.09121040649096, 45698.35575703346], [78.77951633095715, 43447.703935887585], [89.0368710051686, 40695.427611298284] … [1837.3438503109944, 0.8433947122057158], [1845.7948211091527, 0.6979687632219495], [1855.471849159804, 0.5668576370971019], [1864.5090222247275, 0.4704922743237069], [1873.8743407814427, 0.3908482280886043], [1883.0192858448245, 0.3283514569495861], [1892.1092263883431, 0.2777586828850508], [1900.8362612900953, 0.23755532337615118], [1908.9196172776406, 0.20593526073672488], [1915.21464875939, 0.1840215325583278]], nothing, nothing, [0.0, 8.56648549282766e-6, 1.1812980578395823e-5, 1.3658863505726938e-5, 1.4161185865091524e-5, 1.4237378954798664e-5, 1.4999309851870076e-5, 1.6764696614062882e-5, 1.9168447644388215e-5, 2.230431929948107e-5 … 5.462931243989206, 5.750770805226568, 6.131593659670362, 6.5455572575485705, 7.046494437169255, 7.6234920561778985, 8.309417102310476, 9.117324296406762, 10.082487192835861, 11.18], [[[0.0, 0.0]], [[4.214394566177089e6, 3.379511584937933e9], [4.21439431337906e6, 3.3795111795018353e9], [4.214394186980038e6, 3.379510976783785e9], [4.2143938077829555e6, 3.3795103686296415e9], [4.2143938077829555e6, 3.3795103686296415e9], [4.214393591098954e6, 3.379510021113084e9], [4.214393238987266e6, 3.379509456398421e9], [4.214393049388685e6, 3.3795091523213468e9]], [[4.214393049388685e6, 3.3795091523213468e9], [4.214392953584189e6, 3.379508998670672e9], [4.214392905681906e6, 3.3795089218452806e9], [4.214392761975186e6, 3.3795086913693156e9], [4.214392761975186e6, 3.3795086913693156e9], [4.214392679857039e6, 3.379508559668735e9], [4.214392546415048e6, 3.3795083456552916e9], [4.214392474561667e6, 3.3795082304172845e9]], [[4.214392474561667e6, 3.3795082304172845e9], [4.214392420089411e6, 3.379508143055019e9], [4.214392392853283e6, 3.379508099373888e9], [4.214392311144899e6, 3.3795079683304915e9], [4.214392311144899e6, 3.3795079683304915e9], [4.214392264454391e6, 3.3795078934485493e9], [4.214392188582317e6, 3.379507771765396e9], [4.214392147728183e6, 3.3795077062437963e9]], [[4.214392147728183e6, 3.3795077062437963e9], [4.214392132904521e6, 3.3795076824697e9], [4.21439212549272e6, 3.3795076705827e9], [4.214392103257316e6, 3.379507634921701e9], [4.214392103257316e6, 3.379507634921701e9], [4.214392090551372e6, 3.3795076145439878e9], [4.214392069904211e6, 3.3795075814302025e9], [4.21439205878651e6, 3.3795075635997043e9]], [[4.21439205878651e6, 3.3795075635997043e9], [4.21439205653801e6, 3.379507559993574e9], [4.214392055413807e6, 3.3795075581905847e9], [4.214392052041072e6, 3.3795075527814145e9], [4.214392052041072e6, 3.3795075527814145e9], [4.214392050113846e6, 3.3795075496905403e9], [4.214392046982049e6, 3.3795075446677856e9], [4.214305975337522e6, -9.466886048144455e8]], [[4.214305975337522e6, -9.466886048144455e8], [4.1903203611298082e6, -9.490980264816656e8], [4.178534715513605e6, -9.50123544451323e8], [4.1433819597961623e6, -9.529685967609482e8], [4.1433924631738714e6, -9.529466706063285e8], [4.123568618123556e6, -9.543390062172318e8], [4.0917876230429327e6, -9.561906877156491e8], [4.074881712690431e6, -9.570090650250373e8]], [[4.074881712690431e6, -9.570090650250373e8], [4.02322941378132e6, -9.589671677712107e8], [3.998391672420922e6, -9.592563875375967e8], [3.9247799242763356e6, -9.592967864234586e8], [3.924892205573184e6, -9.591013252975683e8], [3.88397127617313e6, -9.584104369450316e8], [3.8195142270768723e6, -9.557218715169106e8], [3.7856960033985605e6, -9.537485490097175e8]], [[3.7856960033985605e6, -9.537485490097175e8], [3.725386761633279e6, -9.494012567842493e8], [3.6966791149696903e6, -9.466332350119133e8], [3.611827518694038e6, -9.374682285534229e8], [3.6120346050775438e6, -9.372469453985538e8], [3.565145011711225e6, -9.314291480773802e8], [3.4919253173533725e6, -9.20576028898313e8], [3.4537397345432425e6, -9.143379280848722e8]], [[3.4537397345432425e6, -9.143379280848722e8], [3.3887432447257102e6, -9.028713492404566e8], [3.3580833224482196e6, -8.968974572738178e8], [3.267665019377353e6, -8.782521173483591e8], [3.2679764310349897e6, -8.781268990470865e8], [3.2182530144449887e6, -8.671926733962803e8], [3.141226825354091e6, -8.48777828873539e8], [3.101260695659117e6, -8.387426426854272e8]] … [[37.34013001476098, -0.9765550182525771], [36.18631718588171, -0.8928225811032697], [35.65831899649486, -0.858545684863381], [34.11829881451928, -0.7586624496341955], [34.12953353926299, -0.7629960217899996], [33.29728848817474, -0.7091950788466396], [32.04541620104148, -0.6389531900002168], [31.40723673150323, -0.6045193060724718]], [[31.40723673150323, -0.6045193060724718], [30.672314008566605, -0.5661747163866081], [30.327876594144307, -0.5495872528066309], [29.317362643333336, -0.5012013703189002], [29.32119011641529, -0.5022627059591395], [28.769044685620717, -0.4763234876118407], [27.919615357011644, -0.4396990942079727], [27.481245099622807, -0.4214586883552054]], [[27.481245099622807, -0.4214586883552054], [26.731145578267753, -0.39109065088622036], [26.38258243426983, -0.3782213412949672], [25.362613053639112, -0.3407597484285141], [25.36754477259147, -0.34182944757788014], [24.812755829438082, -0.3217794315370284], [23.96582041625987, -0.294219919305212], [23.530713364539146, -0.2805972628757362]], [[23.530713364539146, -0.2805972628757362], [22.919314842240816, -0.2620181656537412], [22.633231845298766, -0.25402717879944914], [21.79462710854168, -0.23076547488144994], [21.797906369132924, -0.23130335211694517], [21.340171935229186, -0.21886369052213012], [20.636820319660846, -0.20141905425598522], [20.274070372009355, -0.19275739978441572]], [[20.274070372009355, -0.19275739978441572], [19.70589850473943, -0.17957847295285148], [19.440263581958398, -0.17393340467496624], [18.66176453175088, -0.1575232213089175], [18.664870101648486, -0.15791680408688918], [18.240042665555602, -0.14915552060940854], [17.587432062817715, -0.13692789181302512], [17.250815458406784, -0.13086902358960192]], [[17.250815458406784, -0.13086902358960192], [16.748527479862656, -0.12210074427527338], [16.5128236243633, -0.11832542011581233], [15.821030454680047, -0.10735851453703554], [15.823495076742786, -0.10759753144961648], [15.444983935241035, -0.1017490530484782], [14.86106053346125, -0.09352616550647566], [14.558927631766172, -0.08944618114859407]], [[14.558927631766172, -0.08944618114859407], [14.09264214603625, -0.08334825402190231], [13.873200268916209, -0.08072067282901224], [13.227794584824348, -0.07309597500714779], [13.229935133751734, -0.07325530414823454], [12.875639922171324, -0.06919510000659229], [12.326595032209585, -0.06347298756013928], [12.041339714609668, -0.060633257576525365]], [[12.041339714609668, -0.060633257576525365], [11.603483646351425, -0.05642540257239216], [11.396117214369552, -0.054604114894266115], [10.783179522617749, -0.0493189795565593], [10.784942294281196, -0.04941883912204], [10.445915554493139, -0.046604427135538584], [9.915351320851101, -0.04260374379392734], [9.637169693138874, -0.04061113357186889]], [[9.637169693138874, -0.04061113357186889], [9.200425261824227, -0.03760531594148452], [8.991205784995962, -0.03629437621943969], [8.365528155027315, -0.03247447267565241], [8.367007083839466, -0.03253731828537888], [8.014919531457014, -0.03049043956866228], [7.451991251066804, -0.027524532382121842], [7.1502886743636775, -0.02602525553717353]], [[7.1502886743636775, -0.02602525553717353], [6.689492129168893, -0.023834389502829477], [6.462199241178457, -0.022846176427282937], [5.759195868020039, -0.019885716199692264], [5.760286973585726, -0.01991808677251799], [5.34388581785347, -0.018258413304610678], [4.632041047712801, -0.015638669139393033], [4.219441810255534, -0.014191083010508176]]], SciMLBase.ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Any}, SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}, SciMLBase.StandardODEProblem}(SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}(GasChromatographySimulator.odesystem_r!, LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, SciMLBase.DEFAULT_OBSERVED, nothing), [0.0, 0.0], (0.0, 11.18), Any[GasChromatographySimulator.Column(11.18, 0.000104, [0.000104], 1.04e-7, [1.04e-7], "FS5ms", "H2"), GasChromatographySimulator.Program{GasChromatographySimulator.var"#gf#5"{Matrix{Float64}}}([0.0, 60.0, 1680.0, 60.0, 360.0, 60.0], [40.0, 40.0, 180.0, 180.0, 300.0, 300.0], [411564.0, 411564.0, 411564.0, 411564.0, 411564.0, 411564.0], [101300.0, 101300.0, 101300.0, 101300.0, 101300.0, 101300.0], GasChromatographySimulator.var"#gf#5"{Matrix{Float64}}([0.0 0.0 11.18 0.0; 0.0 0.0 11.18 0.0; … ; 0.0 0.0 11.18 0.0; 0.0 0.0 11.18 0.0]), [0.0 0.0 11.18 0.0; 0.0 0.0 11.18 0.0; … ; 0.0 0.0 11.18 0.0; 0.0 0.0 11.18 0.0], 11181×6 extrapolate(interpolate((0.0:0.001:11.18,::Vector{Float64}), ::Matrix{Float64}, Gridded(Linear())), Flat()) with element type Float64:
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
⋮ ⋮
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15, 6-element extrapolate(interpolate((::Vector{Float64},), ::Vector{Float64}, Gridded(Linear())), Flat()) with element type Float64:
411564.0
411564.0
411564.0
411564.0
411564.0
411564.0, 6-element extrapolate(interpolate((::Vector{Float64},), ::Vector{Float64}, Gridded(Linear())), Flat()) with element type Float64:
101300.0
101300.0
101300.0
101300.0
101300.0
101300.0), GasChromatographySimulator.Substance("C22", "629-97-0", 556.7, 41.89, 183.35, 0.001, "Leppert2020b, alkane, alkanes", 7.879073502414208e-5, 0.0, 0.0), GasChromatographySimulator.Options(OwrenZen5(), 1.0e-6, 0.001, "inlet", true, true, "Blumberg", "Pressure")], Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}(), SciMLBase.StandardODEProblem()), OwrenZen5(), OrdinaryDiffEq.InterpolationData{SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}}(SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}(GasChromatographySimulator.odesystem_r!, LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, SciMLBase.DEFAULT_OBSERVED, nothing), [[0.0, 0.0], [36.10254341543524, 28950.526545726527], [49.78454880584168, 39922.08490389185], [57.563823622059566, 46160.26096541256], [59.68080700665526, 47857.863214077064], [60.00191455833749, 48115.3583362121], [63.15919393411739, 47389.54821161078], [70.09121040649096, 45698.35575703346], [78.77951633095715, 43447.703935887585], [89.0368710051686, 40695.427611298284] … [1837.3438503109944, 0.8433947122057158], [1845.7948211091527, 0.6979687632219495], [1855.471849159804, 0.5668576370971019], [1864.5090222247275, 0.4704922743237069], [1873.8743407814427, 0.3908482280886043], [1883.0192858448245, 0.3283514569495861], [1892.1092263883431, 0.2777586828850508], [1900.8362612900953, 0.23755532337615118], [1908.9196172776406, 0.20593526073672488], [1915.21464875939, 0.1840215325583278]], [0.0, 8.56648549282766e-6, 1.1812980578395823e-5, 1.3658863505726938e-5, 1.4161185865091524e-5, 1.4237378954798664e-5, 1.4999309851870076e-5, 1.6764696614062882e-5, 1.9168447644388215e-5, 2.230431929948107e-5 … 5.462931243989206, 5.750770805226568, 6.131593659670362, 6.5455572575485705, 7.046494437169255, 7.6234920561778985, 8.309417102310476, 9.117324296406762, 10.082487192835861, 11.18], [[[0.0, 0.0]], [[4.214394566177089e6, 3.379511584937933e9], [4.21439431337906e6, 3.3795111795018353e9], [4.214394186980038e6, 3.379510976783785e9], [4.2143938077829555e6, 3.3795103686296415e9], [4.2143938077829555e6, 3.3795103686296415e9], [4.214393591098954e6, 3.379510021113084e9], [4.214393238987266e6, 3.379509456398421e9], [4.214393049388685e6, 3.3795091523213468e9]], [[4.214393049388685e6, 3.3795091523213468e9], [4.214392953584189e6, 3.379508998670672e9], [4.214392905681906e6, 3.3795089218452806e9], [4.214392761975186e6, 3.3795086913693156e9], [4.214392761975186e6, 3.3795086913693156e9], [4.214392679857039e6, 3.379508559668735e9], [4.214392546415048e6, 3.3795083456552916e9], [4.214392474561667e6, 3.3795082304172845e9]], [[4.214392474561667e6, 3.3795082304172845e9], [4.214392420089411e6, 3.379508143055019e9], [4.214392392853283e6, 3.379508099373888e9], [4.214392311144899e6, 3.3795079683304915e9], [4.214392311144899e6, 3.3795079683304915e9], [4.214392264454391e6, 3.3795078934485493e9], [4.214392188582317e6, 3.379507771765396e9], [4.214392147728183e6, 3.3795077062437963e9]], [[4.214392147728183e6, 3.3795077062437963e9], [4.214392132904521e6, 3.3795076824697e9], [4.21439212549272e6, 3.3795076705827e9], [4.214392103257316e6, 3.379507634921701e9], [4.214392103257316e6, 3.379507634921701e9], [4.214392090551372e6, 3.3795076145439878e9], [4.214392069904211e6, 3.3795075814302025e9], [4.21439205878651e6, 3.3795075635997043e9]], [[4.21439205878651e6, 3.3795075635997043e9], [4.21439205653801e6, 3.379507559993574e9], [4.214392055413807e6, 3.3795075581905847e9], [4.214392052041072e6, 3.3795075527814145e9], [4.214392052041072e6, 3.3795075527814145e9], [4.214392050113846e6, 3.3795075496905403e9], [4.214392046982049e6, 3.3795075446677856e9], [4.214305975337522e6, -9.466886048144455e8]], [[4.214305975337522e6, -9.466886048144455e8], [4.1903203611298082e6, -9.490980264816656e8], [4.178534715513605e6, -9.50123544451323e8], [4.1433819597961623e6, -9.529685967609482e8], [4.1433924631738714e6, -9.529466706063285e8], [4.123568618123556e6, -9.543390062172318e8], [4.0917876230429327e6, -9.561906877156491e8], [4.074881712690431e6, -9.570090650250373e8]], [[4.074881712690431e6, -9.570090650250373e8], [4.02322941378132e6, -9.589671677712107e8], [3.998391672420922e6, -9.592563875375967e8], [3.9247799242763356e6, -9.592967864234586e8], [3.924892205573184e6, -9.591013252975683e8], [3.88397127617313e6, -9.584104369450316e8], [3.8195142270768723e6, -9.557218715169106e8], [3.7856960033985605e6, -9.537485490097175e8]], [[3.7856960033985605e6, -9.537485490097175e8], [3.725386761633279e6, -9.494012567842493e8], [3.6966791149696903e6, -9.466332350119133e8], [3.611827518694038e6, -9.374682285534229e8], [3.6120346050775438e6, -9.372469453985538e8], [3.565145011711225e6, -9.314291480773802e8], [3.4919253173533725e6, -9.20576028898313e8], [3.4537397345432425e6, -9.143379280848722e8]], [[3.4537397345432425e6, -9.143379280848722e8], [3.3887432447257102e6, -9.028713492404566e8], [3.3580833224482196e6, -8.968974572738178e8], [3.267665019377353e6, -8.782521173483591e8], [3.2679764310349897e6, -8.781268990470865e8], [3.2182530144449887e6, -8.671926733962803e8], [3.141226825354091e6, -8.48777828873539e8], [3.101260695659117e6, -8.387426426854272e8]] … [[37.34013001476098, -0.9765550182525771], [36.18631718588171, -0.8928225811032697], [35.65831899649486, -0.858545684863381], [34.11829881451928, -0.7586624496341955], [34.12953353926299, -0.7629960217899996], [33.29728848817474, -0.7091950788466396], [32.04541620104148, -0.6389531900002168], [31.40723673150323, -0.6045193060724718]], [[31.40723673150323, -0.6045193060724718], [30.672314008566605, -0.5661747163866081], [30.327876594144307, -0.5495872528066309], [29.317362643333336, -0.5012013703189002], [29.32119011641529, -0.5022627059591395], [28.769044685620717, -0.4763234876118407], [27.919615357011644, -0.4396990942079727], [27.481245099622807, -0.4214586883552054]], [[27.481245099622807, -0.4214586883552054], [26.731145578267753, -0.39109065088622036], [26.38258243426983, -0.3782213412949672], [25.362613053639112, -0.3407597484285141], [25.36754477259147, -0.34182944757788014], [24.812755829438082, -0.3217794315370284], [23.96582041625987, -0.294219919305212], [23.530713364539146, -0.2805972628757362]], [[23.530713364539146, -0.2805972628757362], [22.919314842240816, -0.2620181656537412], [22.633231845298766, -0.25402717879944914], [21.79462710854168, -0.23076547488144994], [21.797906369132924, -0.23130335211694517], [21.340171935229186, -0.21886369052213012], [20.636820319660846, -0.20141905425598522], [20.274070372009355, -0.19275739978441572]], [[20.274070372009355, -0.19275739978441572], [19.70589850473943, -0.17957847295285148], [19.440263581958398, -0.17393340467496624], [18.66176453175088, -0.1575232213089175], [18.664870101648486, -0.15791680408688918], [18.240042665555602, -0.14915552060940854], [17.587432062817715, -0.13692789181302512], [17.250815458406784, -0.13086902358960192]], [[17.250815458406784, -0.13086902358960192], [16.748527479862656, -0.12210074427527338], [16.5128236243633, -0.11832542011581233], [15.821030454680047, -0.10735851453703554], [15.823495076742786, -0.10759753144961648], [15.444983935241035, -0.1017490530484782], [14.86106053346125, -0.09352616550647566], [14.558927631766172, -0.08944618114859407]], [[14.558927631766172, -0.08944618114859407], [14.09264214603625, -0.08334825402190231], [13.873200268916209, -0.08072067282901224], [13.227794584824348, -0.07309597500714779], [13.229935133751734, -0.07325530414823454], [12.875639922171324, -0.06919510000659229], [12.326595032209585, -0.06347298756013928], [12.041339714609668, -0.060633257576525365]], [[12.041339714609668, -0.060633257576525365], [11.603483646351425, -0.05642540257239216], [11.396117214369552, -0.054604114894266115], [10.783179522617749, -0.0493189795565593], [10.784942294281196, -0.04941883912204], [10.445915554493139, -0.046604427135538584], [9.915351320851101, -0.04260374379392734], [9.637169693138874, -0.04061113357186889]], [[9.637169693138874, -0.04061113357186889], [9.200425261824227, -0.03760531594148452], [8.991205784995962, -0.03629437621943969], [8.365528155027315, -0.03247447267565241], [8.367007083839466, -0.03253731828537888], [8.014919531457014, -0.03049043956866228], [7.451991251066804, -0.027524532382121842], [7.1502886743636775, -0.02602525553717353]], [[7.1502886743636775, -0.02602525553717353], [6.689492129168893, -0.023834389502829477], [6.462199241178457, -0.022846176427282937], [5.759195868020039, -0.019885716199692264], [5.760286973585726, -0.01991808677251799], [5.34388581785347, -0.018258413304610678], [4.632041047712801, -0.015638669139393033], [4.219441810255534, -0.014191083010508176]]], true, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}([1915.21464875939, 0.1840215325583278], [1908.9196172776406, 0.20593526073672488], [7.1502886743636775, -0.02602525553717353], [6.689492129168893, -0.023834389502829477], [6.462199241178457, -0.022846176427282937], [5.759195868020039, -0.019885716199692264], [5.760286973585726, -0.01991808677251799], [5.34388581785347, -0.018258413304610678], [4.632041047712801, -0.015638669139393033], [4.219441810255534, -0.014191083010508176], [0.0016334030701333454, -3.898517081752847e-6], [1914.6063960304882, 0.1860794884487537], [0.0008528559544672721, -0.018839307848616326], OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}(0.16666666666666666, 0.0625, 0.1875, 0.25, -0.75, -0.75, 3.75, -3.0, 0.5, 0.26895043731778423, -0.7084548104956269, 0.8658892128279884, 0.15462307371928363, 0.06184922948771345, -0.02947695035460993, 0.18500664893617022, 0.4802345261121857, -0.5337849069148937, -0.013090093085106383, 0.7861107753062541, 0.08783068783068783, 0.3006060606060606, 0.22777777777777777, 0.027777777777777776, 0.06218596218596219, 0.2938217338217338, 0.16666666666666666, 0.25, 0.5, 0.5, 0.6428571428571429, 0.875, -0.19894179894179895, 0.9115151515151515, -1.9777777777777779, -0.1111111111111111, 1.67013727013727, -0.2938217338217338, 1.892063492063492, -6.067155067155067, 7.282458282458283, -4.0195360195360195, -7.214545454545455, 20.676923076923078, -20.31142191142191, 7.14965034965035, 7.866666666666666, -18.78205128205128, 13.508547008547009, -2.3653846153846154, 2.0, -5.294871794871795, 4.534188034188034, -1.2115384615384615, -1.4924630924630924, 1.5785667324128863, 1.1958838881915805, -1.219801565955412, -7.051721611721612, 16.273203719357564, -11.978886071193763, 3.0512256973795435, 4.0, -8.384615384615385, 5.769230769230769, -1.3846153846153846))), true, 0, DiffEqBase.DEStats
Number of function 1 evaluations: 843
Number of function 2 evaluations: 0
Number of W matrix evaluations: 0
Number of linear solves: 0
Number of Jacobians created: 0
Number of nonlinear solver iterations: 0
Number of nonlinear solver convergence failures: 0
Number of rootfind condition calls: 0
Number of accepted steps: 92
Number of rejected steps: 28, :Success), SciMLBase.ODESolution{Float64, 2, Vector{Vector{Float64}}, Nothing, Nothing, Vector{Float64}, Vector{Vector{Vector{Float64}}}, SciMLBase.ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Any}, SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}, SciMLBase.StandardODEProblem}, OwrenZen5, OrdinaryDiffEq.InterpolationData{SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}}, DiffEqBase.DEStats}([[0.0, 0.0], [34.34293416780477, 72046.53197204512], [63.398246612273994, 133000.3872449004], [112.53401939604558, 89535.90269292975], [128.09851203361546, 78004.91903185604], [151.55027851647276, 63013.448847105945], [168.38640902976195, 53918.37218237486], [187.0664153959642, 45289.73878889312], [203.9423668879847, 38664.056072035426], [221.22175495148875, 32879.89461960968] … [1882.4387299638095, 0.47177562957679137], [1892.029074249882, 0.3936282021058338], [1901.698717883373, 0.3307017819780711], [1911.4980808124437, 0.2793975069945448], [1921.3420304218967, 0.23758321013499256], [1931.1655200375017, 0.20334790049742762], [1940.804738258611, 0.1753625586850955], [1949.9775074829133, 0.15266297989918304], [1958.0794820973697, 0.13489797231284562], [1961.0467079870948, 0.1286864146226903]], nothing, nothing, [0.0, 3.179189625485196e-6, 5.868894553595075e-6, 1.2133723234664337e-5, 1.4922299157110278e-5, 2.0099799532910173e-5, 2.4686540782453472e-5, 3.08055484078781e-5, 3.743577190012287e-5, 4.550611928635955e-5 … 4.558940710422597, 4.944830025205526, 5.39512001436814, 5.9260595917372125, 6.5516554667131235, 7.292852986241323, 8.173700652316567, 9.22674232577817, 10.49918043972625, 11.18], [[[0.0, 0.0]], [[1.0802418385511627e7, 2.2661920200555973e10], [1.0802418145034807e7, 2.266191919158441e10], [1.080241802479639e7, 2.2661918687098614e10], [1.0802417664081145e7, 2.2661917173641277e10], [1.0802417664081145e7, 2.2661917173641277e10], [1.0802417457958141e7, 2.2661916308808502e10], [1.080241712300825e7, 2.2661914903455246e10], [1.0802416942650728e7, 2.2661914146727066e10]], [[1.0802416942650728e7, 2.2661914146727066e10], [1.0802416739198834e7, 2.266191329310155e10], [1.0802416637472944e7, 2.2661912866289043e10], [1.0802416332295267e7, 2.2661911585851517e10], [1.0802416332295267e7, 2.2661911585851517e10], [1.0802416157907961e7, 2.266191085417268e10], [1.0802415874528738e7, 2.2661909665195236e10], [1.040105534088417e7, -9.82073538559444e9]], [[1.040105534088417e7, -9.82073538559444e9], [9.22107070517991e6, -8.62483387064911e9], [8.818734220894534e6, -8.176759272195179e9], [7.621183352837783e6, -6.708394166771442e9], [7.816982928295134e6, -6.99000688692487e9], [7.089634801442126e6, -6.034567425912561e9], [6.414324595541615e6, -5.172715214636343e9], [6.074483474675806e6, -4.747656292070301e9]], [[6.074483474675806e6, -4.747656292070301e9], [5.892826960425775e6, -4.516669951611319e9], [5.810092418470201e6, -4.416124131714736e9], [5.567866743624926e6, -4.114492845249196e9], [5.570061063710761e6, -4.1238903002644234e9], [5.43880589786829e6, -3.9562617389196224e9], [5.242183556702517e6, -3.7192946605105476e9], [5.141938800096481e6, -3.5987870334882135e9]], [[5.141938800096481e6, -3.5987870334882135e9], [4.904909430408639e6, -3.3133186958924513e9], [4.802482300426672e6, -3.200384585114933e9], [4.504653385519294e6, -2.8569108488641057e9], [4.511421152154601e6, -2.8864404281211524e9], [4.351610407309388e6, -2.6872080568454857e9], [4.125944671477054e6, -2.448212971464078e9], [4.013157045085146e6, -2.328008215669781e9]], [[4.013157045085146e6, -2.328008215669781e9], [3.8862419466998708e6, -2.1947745898579593e9], [3.828758383707906e6, -2.1382138334137936e9], [3.660625538187333e6, -1.9690713809571834e9], [3.6623392711048964e6, -1.9758627155187974e9], [3.5713932889717715e6, -1.8819299579730854e9], [3.435929148148729e6, -1.753614247154004e9], [3.367035349725438e6, -1.6888861823061807e9]], [[3.367035349725438e6, -1.6888861823061807e9], [3.2494030261651725e6, -1.579259991800626e9], [3.1966894971490656e6, -1.5337662506860588e9], [3.0427691005466105e6, -1.3975116417341228e9], [3.0447058195060208e6, -1.4045097899397554e9], [2.9616881623930503e6, -1.3283391751528935e9], [2.8394243919170545e6, -1.227956481083881e9], [2.7775231187733896e6, -1.1775356705241969e9]], [[2.7775231187733896e6, -1.1775356705241969e9], [2.6916746467588986e6, -1.1084649212147603e9], [2.6527029345596666e6, -1.0792257316612277e9], [2.538674468905472e6, -9.91986347452733e8], [2.539781907834477e6, -9.954965178496914e8], [2.478060773687478e6, -9.471750223008652e8], [2.385911032863749e6, -8.813625050307623e8], [2.3389997680589925e6, -8.48230689340078e8]], [[2.3389997680589925e6, -8.48230689340078e8], [2.265740584608125e6, -7.970572158810464e8], [2.2325282857764703e6, -7.754908323916273e8], [2.1353747210898534e6, -7.11163256261151e8], [2.1363450372115024e6, -7.138684548990561e8], [2.0837801583232493e6, -6.782251412553991e8], [2.0054090117212126e6, -6.299973077585466e8], [1.9655358231101618e6, -6.057492168910676e8]] … [[30.740804142214074, -0.3536318460363545], [29.98426764699045, -0.33038794904878555], [29.631363846122042, -0.3204190593580121], [28.597460276968388, -0.2913320062705558], [28.601972637572317, -0.29206082114657106], [28.038491599381857, -0.2764566779978113], [27.175408223714417, -0.2546677984916394], [26.73118006248059, -0.24384055555512008]], [[26.73118006248059, -0.24384055555512008], [26.053179764681353, -0.22775115723282635], [25.736937129280737, -0.22085505610707584], [24.81071916717544, -0.20074695705269718], [24.814729435528992, -0.20124983902948435], [24.310060982238287, -0.19047128670132318], [23.53708700562212, -0.1754291064804224], [23.139260789060824, -0.1679585958264348]], [[23.139260789060824, -0.1679585958264348], [22.53902994690077, -0.15698814788513044], [22.258731679744074, -0.15227747710673117], [21.437704291499866, -0.13855020895000916], [21.44110218261834, -0.13888075785589116], [20.99353115151624, -0.13152901641045395], [20.30717690856097, -0.12124108647808476], [19.953668250514326, -0.11613058941479774]], [[19.953668250514326, -0.11613058941479774], [19.41451764348263, -0.10854697719471933], [19.162513735602214, -0.10528888103516015], [18.424248693268247, -0.09580225739937226], [18.427196954000443, -0.09602533363476093], [18.02453163241435, -0.09095031835223687], [17.40633077333095, -0.08384022998723456], [17.087657180691984, -0.08030930086279715]], [[17.087657180691984, -0.08030930086279715], [16.601651544281516, -0.0750743012681005], [16.374089630195826, -0.07282222569164742], [15.70697888830421, -0.06627049764417767], [15.70949586564188, -0.06641859739796671], [15.34515594265678, -0.06291796507878107], [14.78453307462356, -0.05800185324858366], [14.495031119866715, -0.05556044451798206]], [[14.495031119866715, -0.05556044451798206], [14.050462129079717, -0.05192083255086128], [13.841760584838303, -0.05035299471465379], [13.22901144687729, -0.04579585679909399], [13.231162896707902, -0.0458942757746261], [12.895662394723965, -0.04346251804985131], [12.377492095109726, -0.04003781409791156], [12.10905846135993, -0.03833663185541511]], [[12.10905846135993, -0.03833663185541511], [11.694436386240127, -0.03579185620029109], [11.498904462522907, -0.03469300091910518], [10.922855356119237, -0.03150029924056693], [10.924672952256007, -0.03156476329336483], [10.60759825495812, -0.029862296933557304], [10.11442595404682, -0.02745194928956318], [9.857293720756582, -0.026252494039576413]], [[9.857293720756582, -0.026252494039576413], [9.455413145108663, -0.024443910297137408], [9.264276764251433, -0.023659070912213923], [8.69672263090384, -0.02137427602715574], [8.698245079019513, -0.021415851479096196], [8.382171604554786, -0.020194311166836745], [7.88326652521902, -0.018443477471116538], [7.61935229174262, -0.017565205865195985]], [[7.61935229174262, -0.017565205865195985], [7.1965019907781045, -0.016214530510195228], [6.991599143974538, -0.015619498658104903], [6.369995009218404, -0.013862488824981192], [6.371282281857758, -0.01388881727289781], [6.013891037049249, -0.01292869071178309], [5.426592507784542, -0.011489829747114235], [5.101859806771271, -0.010735678787475476]], [[5.101859806771271, -0.010735678787475476], [4.864256946413874, -0.010198964636589427], [4.744301553880693, -0.00993771779490392], [4.372118536289125, -0.00913604348880188], [4.372226573918654, -0.009137638861603202], [4.150750417364882, -0.008671069787983706], [3.773064798534283, -0.007893757323399638], [3.55790891935728, -0.0074575277680203125]]], SciMLBase.ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Any}, SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}, SciMLBase.StandardODEProblem}(SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}(GasChromatographySimulator.odesystem_r!, LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, SciMLBase.DEFAULT_OBSERVED, nothing), [0.0, 0.0], (0.0, 11.18), Any[GasChromatographySimulator.Column(11.18, 0.000104, [0.000104], 1.04e-7, [1.04e-7], "FS5ms", "H2"), GasChromatographySimulator.Program{GasChromatographySimulator.var"#gf#5"{Matrix{Float64}}}([0.0, 60.0, 1680.0, 60.0, 360.0, 60.0], [40.0, 40.0, 180.0, 180.0, 300.0, 300.0], [411564.0, 411564.0, 411564.0, 411564.0, 411564.0, 411564.0], [101300.0, 101300.0, 101300.0, 101300.0, 101300.0, 101300.0], GasChromatographySimulator.var"#gf#5"{Matrix{Float64}}([0.0 0.0 11.18 0.0; 0.0 0.0 11.18 0.0; … ; 0.0 0.0 11.18 0.0; 0.0 0.0 11.18 0.0]), [0.0 0.0 11.18 0.0; 0.0 0.0 11.18 0.0; … ; 0.0 0.0 11.18 0.0; 0.0 0.0 11.18 0.0], 11181×6 extrapolate(interpolate((0.0:0.001:11.18,::Vector{Float64}), ::Matrix{Float64}, Gridded(Linear())), Flat()) with element type Float64:
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
⋮ ⋮
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15, 6-element extrapolate(interpolate((::Vector{Float64},), ::Vector{Float64}, Gridded(Linear())), Flat()) with element type Float64:
411564.0
411564.0
411564.0
411564.0
411564.0
411564.0, 6-element extrapolate(interpolate((::Vector{Float64},), ::Vector{Float64}, Gridded(Linear())), Flat()) with element type Float64:
101300.0
101300.0
101300.0
101300.0
101300.0
101300.0), GasChromatographySimulator.Substance("C23", "638-67-5", 566.26, 42.25, 188.99, 0.001, "Leppert2020b, alkane, alkanes", 7.693149436827684e-5, 0.0, 0.0), GasChromatographySimulator.Options(OwrenZen5(), 1.0e-6, 0.001, "inlet", true, true, "Blumberg", "Pressure")], Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}(), SciMLBase.StandardODEProblem()), OwrenZen5(), OrdinaryDiffEq.InterpolationData{SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}}(SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}(GasChromatographySimulator.odesystem_r!, LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, SciMLBase.DEFAULT_OBSERVED, nothing), [[0.0, 0.0], [34.34293416780477, 72046.53197204512], [63.398246612273994, 133000.3872449004], [112.53401939604558, 89535.90269292975], [128.09851203361546, 78004.91903185604], [151.55027851647276, 63013.448847105945], [168.38640902976195, 53918.37218237486], [187.0664153959642, 45289.73878889312], [203.9423668879847, 38664.056072035426], [221.22175495148875, 32879.89461960968] … [1882.4387299638095, 0.47177562957679137], [1892.029074249882, 0.3936282021058338], [1901.698717883373, 0.3307017819780711], [1911.4980808124437, 0.2793975069945448], [1921.3420304218967, 0.23758321013499256], [1931.1655200375017, 0.20334790049742762], [1940.804738258611, 0.1753625586850955], [1949.9775074829133, 0.15266297989918304], [1958.0794820973697, 0.13489797231284562], [1961.0467079870948, 0.1286864146226903]], [0.0, 3.179189625485196e-6, 5.868894553595075e-6, 1.2133723234664337e-5, 1.4922299157110278e-5, 2.0099799532910173e-5, 2.4686540782453472e-5, 3.08055484078781e-5, 3.743577190012287e-5, 4.550611928635955e-5 … 4.558940710422597, 4.944830025205526, 5.39512001436814, 5.9260595917372125, 6.5516554667131235, 7.292852986241323, 8.173700652316567, 9.22674232577817, 10.49918043972625, 11.18], [[[0.0, 0.0]], [[1.0802418385511627e7, 2.2661920200555973e10], [1.0802418145034807e7, 2.266191919158441e10], [1.080241802479639e7, 2.2661918687098614e10], [1.0802417664081145e7, 2.2661917173641277e10], [1.0802417664081145e7, 2.2661917173641277e10], [1.0802417457958141e7, 2.2661916308808502e10], [1.080241712300825e7, 2.2661914903455246e10], [1.0802416942650728e7, 2.2661914146727066e10]], [[1.0802416942650728e7, 2.2661914146727066e10], [1.0802416739198834e7, 2.266191329310155e10], [1.0802416637472944e7, 2.2661912866289043e10], [1.0802416332295267e7, 2.2661911585851517e10], [1.0802416332295267e7, 2.2661911585851517e10], [1.0802416157907961e7, 2.266191085417268e10], [1.0802415874528738e7, 2.2661909665195236e10], [1.040105534088417e7, -9.82073538559444e9]], [[1.040105534088417e7, -9.82073538559444e9], [9.22107070517991e6, -8.62483387064911e9], [8.818734220894534e6, -8.176759272195179e9], [7.621183352837783e6, -6.708394166771442e9], [7.816982928295134e6, -6.99000688692487e9], [7.089634801442126e6, -6.034567425912561e9], [6.414324595541615e6, -5.172715214636343e9], [6.074483474675806e6, -4.747656292070301e9]], [[6.074483474675806e6, -4.747656292070301e9], [5.892826960425775e6, -4.516669951611319e9], [5.810092418470201e6, -4.416124131714736e9], [5.567866743624926e6, -4.114492845249196e9], [5.570061063710761e6, -4.1238903002644234e9], [5.43880589786829e6, -3.9562617389196224e9], [5.242183556702517e6, -3.7192946605105476e9], [5.141938800096481e6, -3.5987870334882135e9]], [[5.141938800096481e6, -3.5987870334882135e9], [4.904909430408639e6, -3.3133186958924513e9], [4.802482300426672e6, -3.200384585114933e9], [4.504653385519294e6, -2.8569108488641057e9], [4.511421152154601e6, -2.8864404281211524e9], [4.351610407309388e6, -2.6872080568454857e9], [4.125944671477054e6, -2.448212971464078e9], [4.013157045085146e6, -2.328008215669781e9]], [[4.013157045085146e6, -2.328008215669781e9], [3.8862419466998708e6, -2.1947745898579593e9], [3.828758383707906e6, -2.1382138334137936e9], [3.660625538187333e6, -1.9690713809571834e9], [3.6623392711048964e6, -1.9758627155187974e9], [3.5713932889717715e6, -1.8819299579730854e9], [3.435929148148729e6, -1.753614247154004e9], [3.367035349725438e6, -1.6888861823061807e9]], [[3.367035349725438e6, -1.6888861823061807e9], [3.2494030261651725e6, -1.579259991800626e9], [3.1966894971490656e6, -1.5337662506860588e9], [3.0427691005466105e6, -1.3975116417341228e9], [3.0447058195060208e6, -1.4045097899397554e9], [2.9616881623930503e6, -1.3283391751528935e9], [2.8394243919170545e6, -1.227956481083881e9], [2.7775231187733896e6, -1.1775356705241969e9]], [[2.7775231187733896e6, -1.1775356705241969e9], [2.6916746467588986e6, -1.1084649212147603e9], [2.6527029345596666e6, -1.0792257316612277e9], [2.538674468905472e6, -9.91986347452733e8], [2.539781907834477e6, -9.954965178496914e8], [2.478060773687478e6, -9.471750223008652e8], [2.385911032863749e6, -8.813625050307623e8], [2.3389997680589925e6, -8.48230689340078e8]], [[2.3389997680589925e6, -8.48230689340078e8], [2.265740584608125e6, -7.970572158810464e8], [2.2325282857764703e6, -7.754908323916273e8], [2.1353747210898534e6, -7.11163256261151e8], [2.1363450372115024e6, -7.138684548990561e8], [2.0837801583232493e6, -6.782251412553991e8], [2.0054090117212126e6, -6.299973077585466e8], [1.9655358231101618e6, -6.057492168910676e8]] … [[30.740804142214074, -0.3536318460363545], [29.98426764699045, -0.33038794904878555], [29.631363846122042, -0.3204190593580121], [28.597460276968388, -0.2913320062705558], [28.601972637572317, -0.29206082114657106], [28.038491599381857, -0.2764566779978113], [27.175408223714417, -0.2546677984916394], [26.73118006248059, -0.24384055555512008]], [[26.73118006248059, -0.24384055555512008], [26.053179764681353, -0.22775115723282635], [25.736937129280737, -0.22085505610707584], [24.81071916717544, -0.20074695705269718], [24.814729435528992, -0.20124983902948435], [24.310060982238287, -0.19047128670132318], [23.53708700562212, -0.1754291064804224], [23.139260789060824, -0.1679585958264348]], [[23.139260789060824, -0.1679585958264348], [22.53902994690077, -0.15698814788513044], [22.258731679744074, -0.15227747710673117], [21.437704291499866, -0.13855020895000916], [21.44110218261834, -0.13888075785589116], [20.99353115151624, -0.13152901641045395], [20.30717690856097, -0.12124108647808476], [19.953668250514326, -0.11613058941479774]], [[19.953668250514326, -0.11613058941479774], [19.41451764348263, -0.10854697719471933], [19.162513735602214, -0.10528888103516015], [18.424248693268247, -0.09580225739937226], [18.427196954000443, -0.09602533363476093], [18.02453163241435, -0.09095031835223687], [17.40633077333095, -0.08384022998723456], [17.087657180691984, -0.08030930086279715]], [[17.087657180691984, -0.08030930086279715], [16.601651544281516, -0.0750743012681005], [16.374089630195826, -0.07282222569164742], [15.70697888830421, -0.06627049764417767], [15.70949586564188, -0.06641859739796671], [15.34515594265678, -0.06291796507878107], [14.78453307462356, -0.05800185324858366], [14.495031119866715, -0.05556044451798206]], [[14.495031119866715, -0.05556044451798206], [14.050462129079717, -0.05192083255086128], [13.841760584838303, -0.05035299471465379], [13.22901144687729, -0.04579585679909399], [13.231162896707902, -0.0458942757746261], [12.895662394723965, -0.04346251804985131], [12.377492095109726, -0.04003781409791156], [12.10905846135993, -0.03833663185541511]], [[12.10905846135993, -0.03833663185541511], [11.694436386240127, -0.03579185620029109], [11.498904462522907, -0.03469300091910518], [10.922855356119237, -0.03150029924056693], [10.924672952256007, -0.03156476329336483], [10.60759825495812, -0.029862296933557304], [10.11442595404682, -0.02745194928956318], [9.857293720756582, -0.026252494039576413]], [[9.857293720756582, -0.026252494039576413], [9.455413145108663, -0.024443910297137408], [9.264276764251433, -0.023659070912213923], [8.69672263090384, -0.02137427602715574], [8.698245079019513, -0.021415851479096196], [8.382171604554786, -0.020194311166836745], [7.88326652521902, -0.018443477471116538], [7.61935229174262, -0.017565205865195985]], [[7.61935229174262, -0.017565205865195985], [7.1965019907781045, -0.016214530510195228], [6.991599143974538, -0.015619498658104903], [6.369995009218404, -0.013862488824981192], [6.371282281857758, -0.01388881727289781], [6.013891037049249, -0.01292869071178309], [5.426592507784542, -0.011489829747114235], [5.101859806771271, -0.010735678787475476]], [[5.101859806771271, -0.010735678787475476], [4.864256946413874, -0.010198964636589427], [4.744301553880693, -0.00993771779490392], [4.372118536289125, -0.00913604348880188], [4.372226573918654, -0.009137638861603202], [4.150750417364882, -0.008671069787983706], [3.773064798534283, -0.007893757323399638], [3.55790891935728, -0.0074575277680203125]]], true, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}([1961.0467079870948, 0.1286864146226903], [1958.0794820973697, 0.13489797231284562], [5.101859806771271, -0.010735678787475476], [4.864256946413874, -0.010198964636589427], [4.744301553880693, -0.00993771779490392], [4.372118536289125, -0.00913604348880188], [4.372226573918654, -0.009137638861603202], [4.150750417364882, -0.008671069787983706], [3.773064798534283, -0.007893757323399638], [3.55790891935728, -0.0074575277680203125], [0.0002466448746329543, -5.224994853889072e-7], [1960.7345802813652, 0.12934045373285338], [0.00012577199097625288, -0.0038447923577997235], OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}(0.16666666666666666, 0.0625, 0.1875, 0.25, -0.75, -0.75, 3.75, -3.0, 0.5, 0.26895043731778423, -0.7084548104956269, 0.8658892128279884, 0.15462307371928363, 0.06184922948771345, -0.02947695035460993, 0.18500664893617022, 0.4802345261121857, -0.5337849069148937, -0.013090093085106383, 0.7861107753062541, 0.08783068783068783, 0.3006060606060606, 0.22777777777777777, 0.027777777777777776, 0.06218596218596219, 0.2938217338217338, 0.16666666666666666, 0.25, 0.5, 0.5, 0.6428571428571429, 0.875, -0.19894179894179895, 0.9115151515151515, -1.9777777777777779, -0.1111111111111111, 1.67013727013727, -0.2938217338217338, 1.892063492063492, -6.067155067155067, 7.282458282458283, -4.0195360195360195, -7.214545454545455, 20.676923076923078, -20.31142191142191, 7.14965034965035, 7.866666666666666, -18.78205128205128, 13.508547008547009, -2.3653846153846154, 2.0, -5.294871794871795, 4.534188034188034, -1.2115384615384615, -1.4924630924630924, 1.5785667324128863, 1.1958838881915805, -1.219801565955412, -7.051721611721612, 16.273203719357564, -11.978886071193763, 3.0512256973795435, 4.0, -8.384615384615385, 5.769230769230769, -1.3846153846153846))), true, 0, DiffEqBase.DEStats
Number of function 1 evaluations: 773
Number of function 2 evaluations: 0
Number of W matrix evaluations: 0
Number of linear solves: 0
Number of Jacobians created: 0
Number of nonlinear solver iterations: 0
Number of nonlinear solver convergence failures: 0
Number of rootfind condition calls: 0
Number of accepted steps: 93
Number of rejected steps: 17, :Success), SciMLBase.ODESolution{Float64, 2, Vector{Vector{Float64}}, Nothing, Nothing, Vector{Float64}, Vector{Vector{Vector{Float64}}}, SciMLBase.ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Any}, SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}, SciMLBase.StandardODEProblem}, OwrenZen5, OrdinaryDiffEq.InterpolationData{SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}}, DiffEqBase.DEStats}([[0.0, 0.0], [41.749574830596664, 209150.35596902767], [56.94840375388953, 285291.01948851615], [59.47460404836557, 297946.3737097875], [60.024205348362905, 300699.6783980094], [65.3519049350047, 290310.43107511615], [73.38568292772673, 274314.02928618906], [82.60561802375767, 255875.29305847763], [93.87758701488464, 233765.53814820576], [106.93791628832427, 209331.73003090502] … [1916.330100377079, 0.34571623964010656], [1926.3422412030566, 0.2930702735204862], [1936.527284861165, 0.2497502603024918], [1946.8598003254554, 0.21393838146670224], [1957.2795321134247, 0.184236492412908], [1967.6860130170917, 0.15953847339094684], [1977.894798332547, 0.13901250734129303], [1987.556875740274, 0.12210653460956829], [1995.9154499352064, 0.10875612641799198], [1998.0050633189985, 0.10546193153328894]], nothing, nothing, [0.0, 1.6507433443812502e-6, 2.251692383408796e-6, 2.3515762408670423e-6, 2.3733070189720428e-6, 2.5906148000220467e-6, 2.9444842262721403e-6, 3.3926958397204197e-6, 4.0083560065544935e-6, 4.826622371113294e-6 … 3.935040305042224, 4.357680436464596, 4.856161968805279, 5.446053561263353, 6.146049945932717, 6.979682777471354, 7.976476886482342, 9.175250217125019, 10.63790870231433, 11.18], [[[0.0, 0.0]], [[2.5291379438503448e7, 1.267007201247716e11], [2.5291379146163978e7, 1.267007171957403e11], [2.5291378999993835e7, 1.267007157312205e11], [2.52913785614842e7, 1.2670071133766934e11], [2.52913785614842e7, 1.2670071133766934e11], [2.529137831090726e7, 1.2670070882706866e11], [2.5291377903719738e7, 1.2670070474734262e11], [2.5291377684464913e7, 1.2670070255056706e11]], [[2.5291377684464913e7, 1.2670070255056706e11], [2.5291377578039337e7, 1.2670070148425935e11], [2.5291377524826553e7, 1.2670070095110555e11], [2.5291377365188196e7, 1.2670069935164412e11], [2.5291377365188196e7, 1.2670069935164412e11], [2.5291377273966275e7, 1.2670069843766612e11], [2.529137712573066e7, 1.2670069695245197e11], [2.529137704591148e7, 1.2670069615272124e11]], [[2.529137704591148e7, 1.2670069615272124e11], [2.5291377028222464e7, 1.2670069597549e11], [2.529137701937795e7, 1.2670069588687434e11], [2.529137699284443e7, 1.2670069562102757e11], [2.529137699284443e7, 1.2670069562102757e11], [2.529137697768242e7, 1.2670069546911514e11], [2.5291376953044146e7, 1.267006952222574e11], [2.5291376939777385e7, 1.26700695089334e11]], [[2.5291376939777385e7, 1.26700695089334e11], [2.5291376935928956e7, 1.2670069505077551e11], [2.5291376934004746e7, 1.267006950314963e11], [2.5291376928232096e7, 1.2670069497365851e11], [2.5291376928232096e7, 1.2670069497365851e11], [2.529137692493344e7, 1.2670069494060837e11], [2.5291376919573124e7, 1.2670069488690182e11], [2.528432153090573e7, -4.864197341421152e10]], [[2.528432153090573e7, -4.864197341421152e10], [2.5018923938054748e7, -4.8387579012490845e10], [2.4890431917835273e7, -4.825219751400029e10], [2.450887261973189e7, -4.7828606057244415e10], [2.450926817786812e7, -4.7826588080714035e10], [2.429624229589917e7, -4.757299829546486e10], [2.3958775152623363e7, -4.7139339988401566e10], [2.378096914445999e7, -4.689804983972127e10]], [[2.378096914445999e7, -4.689804983972127e10], [2.340114309088453e7, -4.635614361215076e10], [2.322035423728684e7, -4.607927835508734e10], [2.2685967365589146e7, -4.522253110981714e10], [2.2687278398755122e7, -4.52197273988916e10], [2.2391965850483082e7, -4.472012882309076e10], [2.193083717658301e7, -4.388952262106268e10], [2.1690348279777534e7, -4.3438014465832016e10]], [[2.1690348279777534e7, -4.3438014465832016e10], [2.1292796326519832e7, -4.266415036215059e10], [2.1104960885574687e7, -4.228628696222008e10], [2.0550762285932075e7, -4.113264809623694e10], [2.0552569201764766e7, -4.1135179396992035e10], [2.0247525071799975e7, -4.0477061377894104e10], [1.9774285705496725e7, -3.9421538070588196e10], [1.95285082376709e7, -3.885926251369017e10]], [[1.95285082376709e7, -3.885926251369017e10], [1.908958607406237e7, -3.782866589936577e10], [1.8884892749449562e7, -3.7343829066958176e10], [1.8282764680114843e7, -3.587390958347699e10], [1.828576361602873e7, -3.5887037320890755e10], [1.795643737413351e7, -3.505990339120749e10], [1.7451575703946844e7, -3.3779253305430145e10], [1.7191203604979787e7, -3.310864783879812e10]], [[1.7191203604979787e7, -3.310864783879812e10], [1.6743404933234937e7, -3.193451626320556e10], [1.65369217480769e7, -3.1400362097590775e10], [1.593095692033439e7, -2.978882547654094e10], [1.593506424494156e7, -2.9816704417026314e10], [1.5605223640846234e7, -2.89168494229461e10], [1.5104998077015443e7, -2.7573408904967995e10], [1.4848477583170185e7, -2.6879452122418594e10]] … [[29.374282748265568, -0.21428019788336977], [28.640987047312308, -0.20050646645794915], [28.29932500052956, -0.1945993882921079], [27.298795661705316, -0.17734647624273223], [27.303298977493387, -0.17778519602002962], [26.758390555065073, -0.16851696177885878], [25.92468684032771, -0.15557453492416268], [25.495879389352567, -0.14913707151689792]], [[25.495879389352567, -0.14913707151689792], [24.843353066908588, -0.13958656063763072], [24.5392280452202, -0.13548905975325726], [23.64881029609393, -0.12352739963687256], [23.65273820003828, -0.12382708479128351], [23.167826249271215, -0.11740565358049243], [22.42566836349129, -0.10843124689241074], [22.043887936111048, -0.10396806525961774]], [[22.043887936111048, -0.10396806525961774], [21.461978264669117, -0.09733698920150552], [21.190594660439913, -0.09449023378240427], [20.396090787738736, -0.08618473161627702], [20.399494899796608, -0.08638852385942553], [19.966733587738705, -0.08193355716923656], [19.303908841463333, -0.07569984438056016], [18.962782863746114, -0.07260005220230745]], [[18.962782863746114, -0.07260005220230745], [18.440966262903963, -0.06797990579099203], [18.197368874703116, -0.06599516945881459], [17.484090081942288, -0.060208704322711644], [17.487032811208458, -0.060347207497056264], [17.098294641082518, -0.057246577977813726], [16.50215179161375, -0.05290195581198359], [16.19506461830673, -0.05074189713188988]], [[16.19506461830673, -0.05074189713188988], [15.723697206733997, -0.04751393520526591], [15.503283942777939, -0.046126006197970554], [14.857454033951576, -0.04208267022626503], [14.859980527602676, -0.0421762833294545], [14.507534989208805, -0.04001225577011617], [13.965825645456517, -0.03697403587243764], [13.68627465121338, -0.03546357399780646]], [[13.68627465121338, -0.03546357399780646], [13.254999050860148, -0.033198241093066155], [13.052764717503921, -0.03222294887468319], [12.459200363741104, -0.029383721910416296], [12.461353501062307, -0.029446562512094702], [12.136523003785374, -0.027928773281247467], [11.635206263613656, -0.025791402319897072], [11.37558487771023, -0.024728356760887853]], [[11.37558487771023, -0.024728356760887853], [10.97219223735497, -0.023126672780424427], [10.78208344379727, -0.022435473625864052], [10.221940826064609, -0.020423319789910868], [10.223756294356942, -0.020465010553737718], [9.915387571214543, -0.019389732367404593], [9.43569288276118, -0.01786666230044697], [9.18544976919235, -0.017107351850862592]], [[9.18544976919235, -0.017107351850862592], [8.791734682966945, -0.01595348217521741], [8.604381669516345, -0.01545271759587473], [8.047235423739064, -0.013990059635386437], [8.048748703366723, -0.014017266317574419], [7.737800357120496, -0.013232189259816946], [7.245673354271843, -0.012103073687414954], [6.984500986183835, -0.011533882886073668]], [[6.984500986183835, -0.011533882886073668], [6.560434430592709, -0.010645032360692462], [6.35406622995811, -0.010251680762715216], [5.7237109935151524, -0.009077537445407478], [5.725007525192958, -0.009095247339086072], [5.358738418178216, -0.008443460837785889], [4.748186288207962, -0.007444572111070542], [4.404464187976074, -0.006905951447681094]], [[4.404464187976074, -0.006905951447681094], [4.228865743610989, -0.00663572319527962], [4.139881225189348, -0.006501665081090017], [3.8642888472504118, -0.006087478803723898], [3.86432539189366, -0.00608785948479389], [3.7006816820252655, -0.005844204941716428], [3.4229376630503547, -0.005434265194036467], [3.2659927074024826, -0.005203576149321833]]], SciMLBase.ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Any}, SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}, SciMLBase.StandardODEProblem}(SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}(GasChromatographySimulator.odesystem_r!, LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, SciMLBase.DEFAULT_OBSERVED, nothing), [0.0, 0.0], (0.0, 11.18), Any[GasChromatographySimulator.Column(11.18, 0.000104, [0.000104], 1.04e-7, [1.04e-7], "FS5ms", "H2"), GasChromatographySimulator.Program{GasChromatographySimulator.var"#gf#5"{Matrix{Float64}}}([0.0, 60.0, 1680.0, 60.0, 360.0, 60.0], [40.0, 40.0, 180.0, 180.0, 300.0, 300.0], [411564.0, 411564.0, 411564.0, 411564.0, 411564.0, 411564.0], [101300.0, 101300.0, 101300.0, 101300.0, 101300.0, 101300.0], GasChromatographySimulator.var"#gf#5"{Matrix{Float64}}([0.0 0.0 11.18 0.0; 0.0 0.0 11.18 0.0; … ; 0.0 0.0 11.18 0.0; 0.0 0.0 11.18 0.0]), [0.0 0.0 11.18 0.0; 0.0 0.0 11.18 0.0; … ; 0.0 0.0 11.18 0.0; 0.0 0.0 11.18 0.0], 11181×6 extrapolate(interpolate((0.0:0.001:11.18,::Vector{Float64}), ::Matrix{Float64}, Gridded(Linear())), Flat()) with element type Float64:
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
⋮ ⋮
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15, 6-element extrapolate(interpolate((::Vector{Float64},), ::Vector{Float64}, Gridded(Linear())), Flat()) with element type Float64:
411564.0
411564.0
411564.0
411564.0
411564.0
411564.0, 6-element extrapolate(interpolate((::Vector{Float64},), ::Vector{Float64}, Gridded(Linear())), Flat()) with element type Float64:
101300.0
101300.0
101300.0
101300.0
101300.0
101300.0), GasChromatographySimulator.Substance("C24", "646-31-1", 575.2, 42.21, 188.53, 0.001, "Leppert2020b, alkane, alkanes", 7.518755251713027e-5, 0.0, 0.0), GasChromatographySimulator.Options(OwrenZen5(), 1.0e-6, 0.001, "inlet", true, true, "Blumberg", "Pressure")], Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}(), SciMLBase.StandardODEProblem()), OwrenZen5(), OrdinaryDiffEq.InterpolationData{SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}}(SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}(GasChromatographySimulator.odesystem_r!, LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, SciMLBase.DEFAULT_OBSERVED, nothing), [[0.0, 0.0], [41.749574830596664, 209150.35596902767], [56.94840375388953, 285291.01948851615], [59.47460404836557, 297946.3737097875], [60.024205348362905, 300699.6783980094], [65.3519049350047, 290310.43107511615], [73.38568292772673, 274314.02928618906], [82.60561802375767, 255875.29305847763], [93.87758701488464, 233765.53814820576], [106.93791628832427, 209331.73003090502] … [1916.330100377079, 0.34571623964010656], [1926.3422412030566, 0.2930702735204862], [1936.527284861165, 0.2497502603024918], [1946.8598003254554, 0.21393838146670224], [1957.2795321134247, 0.184236492412908], [1967.6860130170917, 0.15953847339094684], [1977.894798332547, 0.13901250734129303], [1987.556875740274, 0.12210653460956829], [1995.9154499352064, 0.10875612641799198], [1998.0050633189985, 0.10546193153328894]], [0.0, 1.6507433443812502e-6, 2.251692383408796e-6, 2.3515762408670423e-6, 2.3733070189720428e-6, 2.5906148000220467e-6, 2.9444842262721403e-6, 3.3926958397204197e-6, 4.0083560065544935e-6, 4.826622371113294e-6 … 3.935040305042224, 4.357680436464596, 4.856161968805279, 5.446053561263353, 6.146049945932717, 6.979682777471354, 7.976476886482342, 9.175250217125019, 10.63790870231433, 11.18], [[[0.0, 0.0]], [[2.5291379438503448e7, 1.267007201247716e11], [2.5291379146163978e7, 1.267007171957403e11], [2.5291378999993835e7, 1.267007157312205e11], [2.52913785614842e7, 1.2670071133766934e11], [2.52913785614842e7, 1.2670071133766934e11], [2.529137831090726e7, 1.2670070882706866e11], [2.5291377903719738e7, 1.2670070474734262e11], [2.5291377684464913e7, 1.2670070255056706e11]], [[2.5291377684464913e7, 1.2670070255056706e11], [2.5291377578039337e7, 1.2670070148425935e11], [2.5291377524826553e7, 1.2670070095110555e11], [2.5291377365188196e7, 1.2670069935164412e11], [2.5291377365188196e7, 1.2670069935164412e11], [2.5291377273966275e7, 1.2670069843766612e11], [2.529137712573066e7, 1.2670069695245197e11], [2.529137704591148e7, 1.2670069615272124e11]], [[2.529137704591148e7, 1.2670069615272124e11], [2.5291377028222464e7, 1.2670069597549e11], [2.529137701937795e7, 1.2670069588687434e11], [2.529137699284443e7, 1.2670069562102757e11], [2.529137699284443e7, 1.2670069562102757e11], [2.529137697768242e7, 1.2670069546911514e11], [2.5291376953044146e7, 1.267006952222574e11], [2.5291376939777385e7, 1.26700695089334e11]], [[2.5291376939777385e7, 1.26700695089334e11], [2.5291376935928956e7, 1.2670069505077551e11], [2.5291376934004746e7, 1.267006950314963e11], [2.5291376928232096e7, 1.2670069497365851e11], [2.5291376928232096e7, 1.2670069497365851e11], [2.529137692493344e7, 1.2670069494060837e11], [2.5291376919573124e7, 1.2670069488690182e11], [2.528432153090573e7, -4.864197341421152e10]], [[2.528432153090573e7, -4.864197341421152e10], [2.5018923938054748e7, -4.8387579012490845e10], [2.4890431917835273e7, -4.825219751400029e10], [2.450887261973189e7, -4.7828606057244415e10], [2.450926817786812e7, -4.7826588080714035e10], [2.429624229589917e7, -4.757299829546486e10], [2.3958775152623363e7, -4.7139339988401566e10], [2.378096914445999e7, -4.689804983972127e10]], [[2.378096914445999e7, -4.689804983972127e10], [2.340114309088453e7, -4.635614361215076e10], [2.322035423728684e7, -4.607927835508734e10], [2.2685967365589146e7, -4.522253110981714e10], [2.2687278398755122e7, -4.52197273988916e10], [2.2391965850483082e7, -4.472012882309076e10], [2.193083717658301e7, -4.388952262106268e10], [2.1690348279777534e7, -4.3438014465832016e10]], [[2.1690348279777534e7, -4.3438014465832016e10], [2.1292796326519832e7, -4.266415036215059e10], [2.1104960885574687e7, -4.228628696222008e10], [2.0550762285932075e7, -4.113264809623694e10], [2.0552569201764766e7, -4.1135179396992035e10], [2.0247525071799975e7, -4.0477061377894104e10], [1.9774285705496725e7, -3.9421538070588196e10], [1.95285082376709e7, -3.885926251369017e10]], [[1.95285082376709e7, -3.885926251369017e10], [1.908958607406237e7, -3.782866589936577e10], [1.8884892749449562e7, -3.7343829066958176e10], [1.8282764680114843e7, -3.587390958347699e10], [1.828576361602873e7, -3.5887037320890755e10], [1.795643737413351e7, -3.505990339120749e10], [1.7451575703946844e7, -3.3779253305430145e10], [1.7191203604979787e7, -3.310864783879812e10]], [[1.7191203604979787e7, -3.310864783879812e10], [1.6743404933234937e7, -3.193451626320556e10], [1.65369217480769e7, -3.1400362097590775e10], [1.593095692033439e7, -2.978882547654094e10], [1.593506424494156e7, -2.9816704417026314e10], [1.5605223640846234e7, -2.89168494229461e10], [1.5104998077015443e7, -2.7573408904967995e10], [1.4848477583170185e7, -2.6879452122418594e10]] … [[29.374282748265568, -0.21428019788336977], [28.640987047312308, -0.20050646645794915], [28.29932500052956, -0.1945993882921079], [27.298795661705316, -0.17734647624273223], [27.303298977493387, -0.17778519602002962], [26.758390555065073, -0.16851696177885878], [25.92468684032771, -0.15557453492416268], [25.495879389352567, -0.14913707151689792]], [[25.495879389352567, -0.14913707151689792], [24.843353066908588, -0.13958656063763072], [24.5392280452202, -0.13548905975325726], [23.64881029609393, -0.12352739963687256], [23.65273820003828, -0.12382708479128351], [23.167826249271215, -0.11740565358049243], [22.42566836349129, -0.10843124689241074], [22.043887936111048, -0.10396806525961774]], [[22.043887936111048, -0.10396806525961774], [21.461978264669117, -0.09733698920150552], [21.190594660439913, -0.09449023378240427], [20.396090787738736, -0.08618473161627702], [20.399494899796608, -0.08638852385942553], [19.966733587738705, -0.08193355716923656], [19.303908841463333, -0.07569984438056016], [18.962782863746114, -0.07260005220230745]], [[18.962782863746114, -0.07260005220230745], [18.440966262903963, -0.06797990579099203], [18.197368874703116, -0.06599516945881459], [17.484090081942288, -0.060208704322711644], [17.487032811208458, -0.060347207497056264], [17.098294641082518, -0.057246577977813726], [16.50215179161375, -0.05290195581198359], [16.19506461830673, -0.05074189713188988]], [[16.19506461830673, -0.05074189713188988], [15.723697206733997, -0.04751393520526591], [15.503283942777939, -0.046126006197970554], [14.857454033951576, -0.04208267022626503], [14.859980527602676, -0.0421762833294545], [14.507534989208805, -0.04001225577011617], [13.965825645456517, -0.03697403587243764], [13.68627465121338, -0.03546357399780646]], [[13.68627465121338, -0.03546357399780646], [13.254999050860148, -0.033198241093066155], [13.052764717503921, -0.03222294887468319], [12.459200363741104, -0.029383721910416296], [12.461353501062307, -0.029446562512094702], [12.136523003785374, -0.027928773281247467], [11.635206263613656, -0.025791402319897072], [11.37558487771023, -0.024728356760887853]], [[11.37558487771023, -0.024728356760887853], [10.97219223735497, -0.023126672780424427], [10.78208344379727, -0.022435473625864052], [10.221940826064609, -0.020423319789910868], [10.223756294356942, -0.020465010553737718], [9.915387571214543, -0.019389732367404593], [9.43569288276118, -0.01786666230044697], [9.18544976919235, -0.017107351850862592]], [[9.18544976919235, -0.017107351850862592], [8.791734682966945, -0.01595348217521741], [8.604381669516345, -0.01545271759587473], [8.047235423739064, -0.013990059635386437], [8.048748703366723, -0.014017266317574419], [7.737800357120496, -0.013232189259816946], [7.245673354271843, -0.012103073687414954], [6.984500986183835, -0.011533882886073668]], [[6.984500986183835, -0.011533882886073668], [6.560434430592709, -0.010645032360692462], [6.35406622995811, -0.010251680762715216], [5.7237109935151524, -0.009077537445407478], [5.725007525192958, -0.009095247339086072], [5.358738418178216, -0.008443460837785889], [4.748186288207962, -0.007444572111070542], [4.404464187976074, -0.006905951447681094]], [[4.404464187976074, -0.006905951447681094], [4.228865743610989, -0.00663572319527962], [4.139881225189348, -0.006501665081090017], [3.8642888472504118, -0.006087478803723898], [3.86432539189366, -0.00608785948479389], [3.7006816820252655, -0.005844204941716428], [3.4229376630503547, -0.005434265194036467], [3.2659927074024826, -0.005203576149321833]]], true, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}([1998.0050633189985, 0.10546193153328894], [1995.9154499352064, 0.10875612641799198], [4.404464187976074, -0.006905951447681094], [4.228865743610989, -0.00663572319527962], [4.139881225189348, -0.006501665081090017], [3.8642888472504118, -0.006087478803723898], [3.86432539189366, -0.00608785948479389], [3.7006816820252655, -0.005844204941716428], [3.4229376630503547, -0.005434265194036467], [3.2659927074024826, -0.005203576149321833], [9.283825828529775e-5, -1.5935362630064966e-7], [1997.7783544373897, 0.10582259497144049], [4.6465453728943634e-5, -0.0014518882134539992], OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}(0.16666666666666666, 0.0625, 0.1875, 0.25, -0.75, -0.75, 3.75, -3.0, 0.5, 0.26895043731778423, -0.7084548104956269, 0.8658892128279884, 0.15462307371928363, 0.06184922948771345, -0.02947695035460993, 0.18500664893617022, 0.4802345261121857, -0.5337849069148937, -0.013090093085106383, 0.7861107753062541, 0.08783068783068783, 0.3006060606060606, 0.22777777777777777, 0.027777777777777776, 0.06218596218596219, 0.2938217338217338, 0.16666666666666666, 0.25, 0.5, 0.5, 0.6428571428571429, 0.875, -0.19894179894179895, 0.9115151515151515, -1.9777777777777779, -0.1111111111111111, 1.67013727013727, -0.2938217338217338, 1.892063492063492, -6.067155067155067, 7.282458282458283, -4.0195360195360195, -7.214545454545455, 20.676923076923078, -20.31142191142191, 7.14965034965035, 7.866666666666666, -18.78205128205128, 13.508547008547009, -2.3653846153846154, 2.0, -5.294871794871795, 4.534188034188034, -1.2115384615384615, -1.4924630924630924, 1.5785667324128863, 1.1958838881915805, -1.219801565955412, -7.051721611721612, 16.273203719357564, -11.978886071193763, 3.0512256973795435, 4.0, -8.384615384615385, 5.769230769230769, -1.3846153846153846))), true, 0, DiffEqBase.DEStats
Number of function 1 evaluations: 1011
Number of function 2 evaluations: 0
Number of W matrix evaluations: 0
Number of linear solves: 0
Number of Jacobians created: 0
Number of nonlinear solver iterations: 0
Number of nonlinear solver convergence failures: 0
Number of rootfind condition calls: 0
Number of accepted steps: 107
Number of rejected steps: 37, :Success), SciMLBase.ODESolution{Float64, 2, Vector{Vector{Float64}}, Nothing, Nothing, Vector{Float64}, Vector{Vector{Vector{Float64}}}, SciMLBase.ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Any}, SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}, SciMLBase.StandardODEProblem}, OwrenZen5, OrdinaryDiffEq.InterpolationData{SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}}, DiffEqBase.DEStats}([[0.0, 0.0], [41.5898856647798, 498280.25699128234], [56.69650787798955, 679269.7290052036], [59.18911138990856, 709133.1216540977], [59.90377367513946, 717695.3499864102], [60.02775252207017, 718556.6934934852], [60.0848954000217, 718262.7763513111], [60.65419523583737, 715331.895936915], [64.97888186700739, 692945.4109462799], [72.6797995276503, 652902.7225138433] … [1941.404172577088, 0.29680875444656396], [1951.7685109722995, 0.25448622520997316], [1962.3549298899893, 0.21913015124078072], [1973.1331278515543, 0.18948391412134855], [1984.0489065445731, 0.1645393988465549], [1995.0071333996257, 0.14349338201645798], [2005.8385931338182, 0.1257221727728331], [2016.2273336443254, 0.11079078136566117], [2025.5174333373488, 0.09857258380497322], [2029.763501291202, 0.09305365987286494]], nothing, nothing, [0.0, 7.008770248144666e-7, 9.554553790239262e-7, 9.97460990520562e-7, 1.0095045530828565e-6, 1.0115939470568437e-6, 1.0125575710904678e-6, 1.0221938114267088e-6, 1.0975661477119695e-6, 1.2417390138585306e-6 … 3.370592750212601, 3.7910404676543488, 4.28944195655951, 4.881732221409847, 5.587541522351077, 6.431247064914716, 7.443515202226012, 8.664054916894319, 10.151223592778036, 11.18], [[[0.0, 0.0]], [[5.933977688613909e7, 7.109382302774656e11], [5.933977659491751e7, 7.109382232993287e11], [5.933977644930633e7, 7.109382198102504e11], [5.93397760124744e7, 7.109382093430552e11], [5.93397760124744e7, 7.109382093430552e11], [5.93397757628555e7, 7.10938203361785e11], [5.9339775357225865e7, 7.109381936422472e11], [5.933977513880969e7, 7.109381884086445e11]], [[5.933977513880969e7, 7.109381884086445e11], [5.9339775033029765e7, 7.109381858739875e11], [5.933977498013983e7, 7.109381846066597e11], [5.9339774821469955e7, 7.109381808046747e11], [5.9339774821469955e7, 7.109381808046747e11], [5.933977473080147e7, 7.109381786321118e11], [5.933977458346517e7, 7.109381751016974e11], [5.933977450413023e7, 7.109381732007048e11]], [[5.933977450413023e7, 7.109381732007048e11], [5.933977448667647e7, 7.109381727824846e11], [5.933977447794958e7, 7.109381725733744e11], [5.933977445176894e7, 7.109381719460442e11], [5.933977445176894e7, 7.109381719460442e11], [5.933977443680857e7, 7.109381715875696e11], [5.933977441249799e7, 7.10938171005049e11], [5.933977439940766e7, 7.109381706913838e11]], [[5.933977439940766e7, 7.109381706913838e11], [5.9339774394403435e7, 7.109381705714745e11], [5.933977439190133e7, 7.109381705115201e11], [5.933977438439564e7, 7.109381703316716e11], [5.933977438439564e7, 7.109381703316716e11], [5.933977438010566e7, 7.109381702288768e11], [5.933977437313549e7, 7.109381700618604e11], [5.933977436938232e7, 7.109381699719283e11]], [[5.933977436938232e7, 7.109381699719283e11], [5.9339774368514165e7, 7.109381699511259e11], [5.933977436808007e7, 7.109381699407242e11], [5.933977436677784e7, 7.109381699095208e11], [5.933977436677784e7, 7.109381699095208e11], [5.933977436603369e7, 7.109381698916897e11], [5.933110851065493e7, -3.056392951504114e11], [5.932015940720611e7, -3.05090059600426e11]], [[5.932015940720611e7, -3.05090059600426e11], [5.931342744397689e7, -3.0506413489281165e11], [5.9310062624389865e7, -3.0505117083397815e11], [5.929996937468996e7, -3.0501226749896606e11], [5.9299969375860296e7, -3.0501226749439197e11], [5.929420338928932e7, -3.049900304931692e11], [5.928483612179538e7, -3.049538852521791e11], [5.927979346871196e7, -3.049344172566665e11]], [[5.927979346871196e7, -3.049344172566665e11], [5.921260423109342e7, -3.046744497460394e11], [5.917912535600769e7, -3.045443034932633e11], [5.907880787233004e7, -3.0415277876482336e11], [5.9078809037969396e7, -3.0415277428423816e11], [5.9021640589516185e7, -3.039284288913491e11], [5.892898619029814e7, -3.035629158799199e11], [5.887921896737145e7, -3.033656258690082e11]], [[5.887921896737145e7, -3.033656258690082e11], [5.836305190606281e7, -3.0128520123693933e11], [5.81118067639919e7, -3.0023909629352954e11], [5.736455209334512e7, -2.9704733780254956e11], [5.7365088622671105e7, -2.970456605521172e11], [5.694641728222292e7, -2.9519896258241296e11], [5.628025403047765e7, -2.92164124311375e11], [5.592806532620749e7, -2.905171133720742e11]], [[5.592806532620749e7, -2.905171133720742e11], [5.504315338721591e7, -2.86256304995074e11], [5.4621746908176966e7, -2.841561697039585e11], [5.337593791249161e7, -2.7774237420063245e11], [5.337893548819241e7, -2.7774837239803284e11], [5.269027162882612e7, -2.7407454782897314e11], [5.1614454060434386e7, -2.6813217715282935e11], [5.105322282365747e7, -2.649490624232143e11]] … [[30.61698074548686, -0.1705522175038945], [29.845249330084815, -0.1598722409139286], [29.48624842195458, -0.15529207498891537], [28.435318604597906, -0.14189244583312965], [28.440283592881986, -0.1422416166709659], [27.868353557323907, -0.13502735502396546], [26.994609181015704, -0.1249539764956374], [26.54559110318237, -0.11993645614868986]], [[26.54559110318237, -0.11993645614868986], [25.85980667489523, -0.11245227117283058], [25.540753447839283, -0.10924207829771965], [24.607043456308904, -0.09985389931393734], [24.611391918742076, -0.10009610550875223], [24.103355736775242, -0.09504421164079555], [23.32713087479079, -0.08798644042723017], [22.928226806812695, -0.08447141322728442]], [[22.928226806812695, -0.08447141322728442], [22.31763502507153, -0.07921707196689312], [22.03345941022016, -0.07696265155050691], [21.201978332001566, -0.07037270608715825], [21.205766443924254, -0.07054029151684918], [20.753355755958093, -0.06699660416531936], [20.06180942632436, -0.06204197288091755], [19.706332075309927, -0.059574760781317904]], [[19.706332075309927, -0.059574760781317904], [19.160786062800543, -0.055878034996509014], [18.906689205378786, -0.05429122307001808], [18.16320012008485, -0.04965545263901096], [18.166479626917262, -0.04977101634193169], [17.76180531498316, -0.04728038239743766], [17.142619594675644, -0.04379419225098271], [16.82412062752984, -0.04205850627896361]], [[16.82412062752984, -0.04205850627896361], [16.333739390830868, -0.03945104209503371], [16.105018628796056, -0.03833108367854611], [15.435480963645643, -0.035061390616048904], [15.438299195611254, -0.035140699815871465], [15.073511937334157, -0.0333859259331146], [14.514304195593295, -0.03092577596922334], [14.226237433676562, -0.02970108146088653]], [[14.226237433676562, -0.02970108146088653], [13.78080875612172, -0.027855602230341413], [13.572546593508788, -0.027062161720734876], [12.962103588919277, -0.024747248322032404], [12.96450363286236, -0.02480129750398203], [12.63116101441157, -0.02356040214545648], [12.118359302769447, -0.02181629296020496], [11.85341989675143, -0.02094787772275008]], [[11.85341989675143, -0.02094787772275008], [11.441193023678142, -0.019633929867060064], [11.247613313751609, -0.019068021710401162], [10.678435644762956, -0.017417239178773542], [10.680456646663837, -0.017453697610367296], [10.368127216895594, -0.016569414121408464], [9.884401349871963, -0.015320624860469057], [9.63296497266416, -0.014697837932744436]], [[9.63296497266416, -0.014697837932744436], [9.237620281443661, -0.013748925980188795], [9.050426838410711, -0.013338528307539631], [8.495935944112079, -0.012138657739582767], [8.497615343483552, -0.012162899609914358], [8.189959892273428, -0.011518488655036348], [7.7066515585110675, -0.010597605106639754], [7.45194781051298, -0.01013473663691887]], [[7.45194781051298, -0.01013473663691887], [7.0417750232934395, -0.009415444878154183], [6.844015658051405, -0.009099969542871107], [6.246286743991629, -0.008163731267374345], [6.247687725643374, -0.008179716492687198], [5.9059167689462155, -0.007665705883629195], [5.348130532239865, -0.006897608187817532], [5.041763796725157, -0.006494191589766552]], [[5.041763796725157, -0.006494191589766552], [4.752229222716623, -0.006121689214742991], [4.606179773603322, -0.005941947359591757], [4.149587297375901, -0.005382317219612856], [4.149834384474731, -0.005384459038723436], [3.875041151954661, -0.005052717052241531], [3.3979850616420135, -0.00448648935109908], [3.118956197262473, -0.004155675468745649]]], SciMLBase.ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Any}, SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}, SciMLBase.StandardODEProblem}(SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}(GasChromatographySimulator.odesystem_r!, LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, SciMLBase.DEFAULT_OBSERVED, nothing), [0.0, 0.0], (0.0, 11.18), Any[GasChromatographySimulator.Column(11.18, 0.000104, [0.000104], 1.04e-7, [1.04e-7], "FS5ms", "H2"), GasChromatographySimulator.Program{GasChromatographySimulator.var"#gf#5"{Matrix{Float64}}}([0.0, 60.0, 1680.0, 60.0, 360.0, 60.0], [40.0, 40.0, 180.0, 180.0, 300.0, 300.0], [411564.0, 411564.0, 411564.0, 411564.0, 411564.0, 411564.0], [101300.0, 101300.0, 101300.0, 101300.0, 101300.0, 101300.0], GasChromatographySimulator.var"#gf#5"{Matrix{Float64}}([0.0 0.0 11.18 0.0; 0.0 0.0 11.18 0.0; … ; 0.0 0.0 11.18 0.0; 0.0 0.0 11.18 0.0]), [0.0 0.0 11.18 0.0; 0.0 0.0 11.18 0.0; … ; 0.0 0.0 11.18 0.0; 0.0 0.0 11.18 0.0], 11181×6 extrapolate(interpolate((0.0:0.001:11.18,::Vector{Float64}), ::Matrix{Float64}, Gridded(Linear())), Flat()) with element type Float64:
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
⋮ ⋮
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15, 6-element extrapolate(interpolate((::Vector{Float64},), ::Vector{Float64}, Gridded(Linear())), Flat()) with element type Float64:
411564.0
411564.0
411564.0
411564.0
411564.0
411564.0, 6-element extrapolate(interpolate((::Vector{Float64},), ::Vector{Float64}, Gridded(Linear())), Flat()) with element type Float64:
101300.0
101300.0
101300.0
101300.0
101300.0
101300.0), GasChromatographySimulator.Substance("C25", "629-99-2", 583.8199999999999, 42.26, 189.51, 0.001, "Leppert2020b, alkane, alkanes", 7.354754525382887e-5, 0.0, 0.0), GasChromatographySimulator.Options(OwrenZen5(), 1.0e-6, 0.001, "inlet", true, true, "Blumberg", "Pressure")], Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}(), SciMLBase.StandardODEProblem()), OwrenZen5(), OrdinaryDiffEq.InterpolationData{SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}}(SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}(GasChromatographySimulator.odesystem_r!, LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, SciMLBase.DEFAULT_OBSERVED, nothing), [[0.0, 0.0], [41.5898856647798, 498280.25699128234], [56.69650787798955, 679269.7290052036], [59.18911138990856, 709133.1216540977], [59.90377367513946, 717695.3499864102], [60.02775252207017, 718556.6934934852], [60.0848954000217, 718262.7763513111], [60.65419523583737, 715331.895936915], [64.97888186700739, 692945.4109462799], [72.6797995276503, 652902.7225138433] … [1941.404172577088, 0.29680875444656396], [1951.7685109722995, 0.25448622520997316], [1962.3549298899893, 0.21913015124078072], [1973.1331278515543, 0.18948391412134855], [1984.0489065445731, 0.1645393988465549], [1995.0071333996257, 0.14349338201645798], [2005.8385931338182, 0.1257221727728331], [2016.2273336443254, 0.11079078136566117], [2025.5174333373488, 0.09857258380497322], [2029.763501291202, 0.09305365987286494]], [0.0, 7.008770248144666e-7, 9.554553790239262e-7, 9.97460990520562e-7, 1.0095045530828565e-6, 1.0115939470568437e-6, 1.0125575710904678e-6, 1.0221938114267088e-6, 1.0975661477119695e-6, 1.2417390138585306e-6 … 3.370592750212601, 3.7910404676543488, 4.28944195655951, 4.881732221409847, 5.587541522351077, 6.431247064914716, 7.443515202226012, 8.664054916894319, 10.151223592778036, 11.18], [[[0.0, 0.0]], [[5.933977688613909e7, 7.109382302774656e11], [5.933977659491751e7, 7.109382232993287e11], [5.933977644930633e7, 7.109382198102504e11], [5.93397760124744e7, 7.109382093430552e11], [5.93397760124744e7, 7.109382093430552e11], [5.93397757628555e7, 7.10938203361785e11], [5.9339775357225865e7, 7.109381936422472e11], [5.933977513880969e7, 7.109381884086445e11]], [[5.933977513880969e7, 7.109381884086445e11], [5.9339775033029765e7, 7.109381858739875e11], [5.933977498013983e7, 7.109381846066597e11], [5.9339774821469955e7, 7.109381808046747e11], [5.9339774821469955e7, 7.109381808046747e11], [5.933977473080147e7, 7.109381786321118e11], [5.933977458346517e7, 7.109381751016974e11], [5.933977450413023e7, 7.109381732007048e11]], [[5.933977450413023e7, 7.109381732007048e11], [5.933977448667647e7, 7.109381727824846e11], [5.933977447794958e7, 7.109381725733744e11], [5.933977445176894e7, 7.109381719460442e11], [5.933977445176894e7, 7.109381719460442e11], [5.933977443680857e7, 7.109381715875696e11], [5.933977441249799e7, 7.10938171005049e11], [5.933977439940766e7, 7.109381706913838e11]], [[5.933977439940766e7, 7.109381706913838e11], [5.9339774394403435e7, 7.109381705714745e11], [5.933977439190133e7, 7.109381705115201e11], [5.933977438439564e7, 7.109381703316716e11], [5.933977438439564e7, 7.109381703316716e11], [5.933977438010566e7, 7.109381702288768e11], [5.933977437313549e7, 7.109381700618604e11], [5.933977436938232e7, 7.109381699719283e11]], [[5.933977436938232e7, 7.109381699719283e11], [5.9339774368514165e7, 7.109381699511259e11], [5.933977436808007e7, 7.109381699407242e11], [5.933977436677784e7, 7.109381699095208e11], [5.933977436677784e7, 7.109381699095208e11], [5.933977436603369e7, 7.109381698916897e11], [5.933110851065493e7, -3.056392951504114e11], [5.932015940720611e7, -3.05090059600426e11]], [[5.932015940720611e7, -3.05090059600426e11], [5.931342744397689e7, -3.0506413489281165e11], [5.9310062624389865e7, -3.0505117083397815e11], [5.929996937468996e7, -3.0501226749896606e11], [5.9299969375860296e7, -3.0501226749439197e11], [5.929420338928932e7, -3.049900304931692e11], [5.928483612179538e7, -3.049538852521791e11], [5.927979346871196e7, -3.049344172566665e11]], [[5.927979346871196e7, -3.049344172566665e11], [5.921260423109342e7, -3.046744497460394e11], [5.917912535600769e7, -3.045443034932633e11], [5.907880787233004e7, -3.0415277876482336e11], [5.9078809037969396e7, -3.0415277428423816e11], [5.9021640589516185e7, -3.039284288913491e11], [5.892898619029814e7, -3.035629158799199e11], [5.887921896737145e7, -3.033656258690082e11]], [[5.887921896737145e7, -3.033656258690082e11], [5.836305190606281e7, -3.0128520123693933e11], [5.81118067639919e7, -3.0023909629352954e11], [5.736455209334512e7, -2.9704733780254956e11], [5.7365088622671105e7, -2.970456605521172e11], [5.694641728222292e7, -2.9519896258241296e11], [5.628025403047765e7, -2.92164124311375e11], [5.592806532620749e7, -2.905171133720742e11]], [[5.592806532620749e7, -2.905171133720742e11], [5.504315338721591e7, -2.86256304995074e11], [5.4621746908176966e7, -2.841561697039585e11], [5.337593791249161e7, -2.7774237420063245e11], [5.337893548819241e7, -2.7774837239803284e11], [5.269027162882612e7, -2.7407454782897314e11], [5.1614454060434386e7, -2.6813217715282935e11], [5.105322282365747e7, -2.649490624232143e11]] … [[30.61698074548686, -0.1705522175038945], [29.845249330084815, -0.1598722409139286], [29.48624842195458, -0.15529207498891537], [28.435318604597906, -0.14189244583312965], [28.440283592881986, -0.1422416166709659], [27.868353557323907, -0.13502735502396546], [26.994609181015704, -0.1249539764956374], [26.54559110318237, -0.11993645614868986]], [[26.54559110318237, -0.11993645614868986], [25.85980667489523, -0.11245227117283058], [25.540753447839283, -0.10924207829771965], [24.607043456308904, -0.09985389931393734], [24.611391918742076, -0.10009610550875223], [24.103355736775242, -0.09504421164079555], [23.32713087479079, -0.08798644042723017], [22.928226806812695, -0.08447141322728442]], [[22.928226806812695, -0.08447141322728442], [22.31763502507153, -0.07921707196689312], [22.03345941022016, -0.07696265155050691], [21.201978332001566, -0.07037270608715825], [21.205766443924254, -0.07054029151684918], [20.753355755958093, -0.06699660416531936], [20.06180942632436, -0.06204197288091755], [19.706332075309927, -0.059574760781317904]], [[19.706332075309927, -0.059574760781317904], [19.160786062800543, -0.055878034996509014], [18.906689205378786, -0.05429122307001808], [18.16320012008485, -0.04965545263901096], [18.166479626917262, -0.04977101634193169], [17.76180531498316, -0.04728038239743766], [17.142619594675644, -0.04379419225098271], [16.82412062752984, -0.04205850627896361]], [[16.82412062752984, -0.04205850627896361], [16.333739390830868, -0.03945104209503371], [16.105018628796056, -0.03833108367854611], [15.435480963645643, -0.035061390616048904], [15.438299195611254, -0.035140699815871465], [15.073511937334157, -0.0333859259331146], [14.514304195593295, -0.03092577596922334], [14.226237433676562, -0.02970108146088653]], [[14.226237433676562, -0.02970108146088653], [13.78080875612172, -0.027855602230341413], [13.572546593508788, -0.027062161720734876], [12.962103588919277, -0.024747248322032404], [12.96450363286236, -0.02480129750398203], [12.63116101441157, -0.02356040214545648], [12.118359302769447, -0.02181629296020496], [11.85341989675143, -0.02094787772275008]], [[11.85341989675143, -0.02094787772275008], [11.441193023678142, -0.019633929867060064], [11.247613313751609, -0.019068021710401162], [10.678435644762956, -0.017417239178773542], [10.680456646663837, -0.017453697610367296], [10.368127216895594, -0.016569414121408464], [9.884401349871963, -0.015320624860469057], [9.63296497266416, -0.014697837932744436]], [[9.63296497266416, -0.014697837932744436], [9.237620281443661, -0.013748925980188795], [9.050426838410711, -0.013338528307539631], [8.495935944112079, -0.012138657739582767], [8.497615343483552, -0.012162899609914358], [8.189959892273428, -0.011518488655036348], [7.7066515585110675, -0.010597605106639754], [7.45194781051298, -0.01013473663691887]], [[7.45194781051298, -0.01013473663691887], [7.0417750232934395, -0.009415444878154183], [6.844015658051405, -0.009099969542871107], [6.246286743991629, -0.008163731267374345], [6.247687725643374, -0.008179716492687198], [5.9059167689462155, -0.007665705883629195], [5.348130532239865, -0.006897608187817532], [5.041763796725157, -0.006494191589766552]], [[5.041763796725157, -0.006494191589766552], [4.752229222716623, -0.006121689214742991], [4.606179773603322, -0.005941947359591757], [4.149587297375901, -0.005382317219612856], [4.149834384474731, -0.005384459038723436], [3.875041151954661, -0.005052717052241531], [3.3979850616420135, -0.00448648935109908], [3.118956197262473, -0.004155675468745649]]], true, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}([2029.763501291202, 0.09305365987286494], [2025.5174333373488, 0.09857258380497322], [5.041763796725157, -0.006494191589766552], [4.752229222716623, -0.006121689214742991], [4.606179773603322, -0.005941947359591757], [4.149587297375901, -0.005382317219612856], [4.149834384474731, -0.005384459038723436], [3.875041151954661, -0.005052717052241531], [3.3979850616420135, -0.00448648935109908], [3.118956197262473, -0.004155675468745649], [0.0010078207255851557, -1.45186924425148e-6], [2029.3439955368426, 0.09361062537072769], [0.0004965210126317841, -0.014581014057997813], OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}(0.16666666666666666, 0.0625, 0.1875, 0.25, -0.75, -0.75, 3.75, -3.0, 0.5, 0.26895043731778423, -0.7084548104956269, 0.8658892128279884, 0.15462307371928363, 0.06184922948771345, -0.02947695035460993, 0.18500664893617022, 0.4802345261121857, -0.5337849069148937, -0.013090093085106383, 0.7861107753062541, 0.08783068783068783, 0.3006060606060606, 0.22777777777777777, 0.027777777777777776, 0.06218596218596219, 0.2938217338217338, 0.16666666666666666, 0.25, 0.5, 0.5, 0.6428571428571429, 0.875, -0.19894179894179895, 0.9115151515151515, -1.9777777777777779, -0.1111111111111111, 1.67013727013727, -0.2938217338217338, 1.892063492063492, -6.067155067155067, 7.282458282458283, -4.0195360195360195, -7.214545454545455, 20.676923076923078, -20.31142191142191, 7.14965034965035, 7.866666666666666, -18.78205128205128, 13.508547008547009, -2.3653846153846154, 2.0, -5.294871794871795, 4.534188034188034, -1.2115384615384615, -1.4924630924630924, 1.5785667324128863, 1.1958838881915805, -1.219801565955412, -7.051721611721612, 16.273203719357564, -11.978886071193763, 3.0512256973795435, 4.0, -8.384615384615385, 5.769230769230769, -1.3846153846153846))), true, 0, DiffEqBase.DEStats
Number of function 1 evaluations: 1375
Number of function 2 evaluations: 0
Number of W matrix evaluations: 0
Number of linear solves: 0
Number of Jacobians created: 0
Number of nonlinear solver iterations: 0
Number of nonlinear solver convergence failures: 0
Number of rootfind condition calls: 0
Number of accepted steps: 127
Number of rejected steps: 69, :Success), SciMLBase.ODESolution{Float64, 2, Vector{Vector{Float64}}, Nothing, Nothing, Vector{Float64}, Vector{Vector{Vector{Float64}}}, SciMLBase.ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Any}, SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}, SciMLBase.StandardODEProblem}, OwrenZen5, OrdinaryDiffEq.InterpolationData{SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}}, DiffEqBase.DEStats}([[0.0, 0.0], [36.4444862744329, 1.579268118627557e6], [51.5102531682474, 2.2321209270527777e6], [59.39548135566309, 2.5738156706214817e6], [59.96899626066168, 2.5986680938581103e6], [60.234408802257775, 2.594052747932799e6], [60.349101684023985, 2.5913870234995824e6], [61.48686174125368, 2.5649894614919503e6], [67.11243296152996, 2.4359367988508265e6], [76.020461285172, 2.238024520691209e6] … [1963.9891912125076, 0.27324662177989356], [1974.6768926588054, 0.23625439933833658], [1985.6166377180555, 0.20502783287737014], [1996.782354114574, 0.17857018547276354], [2008.1253357178794, 0.15607543159298384], [2019.5585056777036, 0.1368938103286856], [2030.9263167269653, 0.12051107733168197], [2041.9404558584677, 0.10655261382031742], [2052.0175116603677, 0.09486200869858916], [2058.4576940911807, 0.08748056334857417]], nothing, nothing, [0.0, 1.7298057351407088e-7, 2.444889216214274e-7, 2.819154693302915e-7, 2.8463760779751227e-7, 2.8589905198827165e-7, 2.8644546979184605e-7, 2.9190964782759027e-7, 3.2012620429042975e-7, 3.691556446083393e-7 … 2.940545044637546, 3.3550956202351676, 3.8482090601813295, 4.4361872044071555, 5.139107314004525, 5.981872890248213, 6.995726192435438, 8.220787491528966, 9.713308206568247, 11.18], [[[0.0, 0.0]], [[2.1068542938955063e8, 9.129742710538527e12], [2.106854291343598e8, 9.129742688421895e12], [2.1068542900676212e8, 9.129742677363377e12], [2.1068542862397364e8, 9.129742644188227e12], [2.1068542862397364e8, 9.129742644188227e12], [2.1068542840523884e8, 9.129742625231125e12], [2.1068542804979238e8, 9.129742594425629e12], [2.106854278583966e8, 9.129742577837918e12]], [[2.106854278583966e8, 9.129742577837918e12], [2.106854277529028e8, 9.129742568695082e12], [2.1068542770015585e8, 9.12974256412366e12], [2.106854275419151e8, 9.1297425504094e12], [2.106854275419151e8, 9.1297425504094e12], [2.1068542745149183e8, 9.129742542572686e12], [2.1068542730455402e8, 9.129742529838016e12], [2.1068542722543365e8, 9.129742522980885e12]], [[2.1068542722543365e8, 9.129742522980885e12], [2.106854271702195e8, 9.129742518195643e12], [2.1068542714261246e8, 9.129742515803018e12], [2.1068542705979133e8, 9.129742508625154e12], [2.1068542705979133e8, 9.129742508625154e12], [2.1068542701246494e8, 9.129742504523516e12], [2.1068542693555957e8, 9.129742497858354e12], [2.1068542689414898e8, 9.129742494269422e12]], [[2.1068542689414898e8, 9.129742494269422e12], [2.1068542689013466e8, 9.129742493921512e12], [2.1068542688812518e8, 9.12974249374736e12], [2.106854268821014e8, 9.129742493225291e12], [2.106854268821014e8, 9.129742493225291e12], [2.1068542687865916e8, 9.129742492926963e12], [2.1068542687306404e8, 9.12974249244205e12], [2.106854268700537e8, 9.129742492181154e12]], [[2.106854268700537e8, 9.129742492181154e12], [2.1064956234730455e8, -4.907154005514008e12], [2.1058983662627813e8, -4.895519868300539e12], [2.1041090851867533e8, -4.908447612780076e12], [2.1041062393797114e8, -4.812694014232162e12], [2.1030877893880403e8, -4.907388926844348e12], [2.1014294160537443e8, -4.874166354907842e12], [2.1005383474934492e8, -4.88289019527668e12]], [[2.1005383474934492e8, -4.88289019527668e12], [2.1000238014542374e8, -4.881441387472777e12], [2.0997667199742615e8, -4.880717474929564e12], [2.0989956740923056e8, -4.878545548328455e12], [2.0989956745091727e8, -4.878545550729561e12], [2.0985553374337646e8, -4.877304804873912e12], [2.097840194801313e8, -4.875289151953951e12], [2.0974553251446438e8, -4.874204084825922e12]], [[2.0974553251446438e8, -4.874204084825922e12], [2.0923312988274118e8, -4.859731754222953e12], [2.089788277220621e8, -4.852544966672877e12], [2.082178447003917e8, -4.830966333259906e12], [2.0821788601282728e8, -4.830968732537408e12], [2.0778555123156482e8, -4.818672861029773e12], [2.0708699833622494e8, -4.798754257488965e12], [2.0671284167621207e8, -4.78805842706214e12]], [[2.0671284167621207e8, -4.78805842706214e12], [2.0415824612021375e8, -4.714366494532878e12], [2.029284943336198e8, -4.678865306799398e12], [1.992824109512023e8, -4.571960727755437e12], [1.992876897085977e8, -4.572289441788356e12], [1.9725929785741428e8, -4.512012816438522e12], [1.940611688444919e8, -4.416397732679444e12], [1.9238201449517912e8, -4.3657660187809385e12]], [[1.9238201449517912e8, -4.3657660187809385e12], [1.8856718091927814e8, -4.2492159079584834e12], [1.867730668386579e8, -4.194873504999828e12], [1.814849903398357e8, -4.0312844009818496e12], [1.8150528513851148e8, -4.032855837290466e12], [1.78601226157403e8, -3.9414206059507705e12], [1.741144977903087e8, -3.8008977369646963e12], [1.7179010090236774e8, -3.727608763893374e12]] … [[32.10698626441984, -0.14969479236247532], [31.285377945330744, -0.14047544202791235], [30.903932488321974, -0.13652557186095193], [29.787909223141313, -0.12495364046963132], [29.79348440692801, -0.1252656188677973], [29.186739470055223, -0.11902314734627652], [28.261553233341047, -0.11031867341085921], [27.786618897268788, -0.10597896428811084]], [[27.786618897268788, -0.10597896428811084], [27.059336726753305, -0.09947924152280424], [26.721657713037448, -0.09669388927193706], [25.734015348628144, -0.08853596194175198], [25.738881644396084, -0.08875375880788511], [25.202065618145895, -0.08435489262787105], [24.38344771689112, -0.0782173264592691], [23.963236621620116, -0.07515755540393901]], [[23.963236621620116, -0.07515755540393901], [23.318381657380563, -0.07056481448293628], [23.01887615750398, -0.06859604841003955], [22.143099439823303, -0.0628320240664563], [22.147324189485698, -0.06298383360682543], [21.671347543643133, -0.0598777115051363], [20.945227886841636, -0.05554030815059207], [20.572429932900487, -0.053378222981727654]], [[20.572429932900487, -0.053378222981727654], [19.998928798145524, -0.05012543983495356], [19.732377498313546, -0.048730505216139836], [18.953010098985533, -0.044648566424458004], [18.956654673363232, -0.04475410898809976], [18.53297682182048, -0.04255626276438907], [17.886073937974643, -0.03948386342781819], [17.553758101696758, -0.037952608659665946]], [[17.553758101696758, -0.037952608659665946], [17.041007946674135, -0.03564315975383239], [16.80238670292516, -0.03465223869167955], [16.104470398905963, -0.031754332908856965], [16.10759082846268, -0.03182741397591998], [15.727884667046013, -0.030268750932387338], [15.147135718991535, -0.02808665571063616], [14.848428157484202, -0.026999309631600743]], [[14.848428157484202, -0.026999309631600743], [14.385743337482529, -0.02535472446495907], [14.169937983355775, -0.02464853697449589], [13.538092843661522, -0.02258465359820425], [13.540740286705786, -0.022634948447395668], [13.19632386607867, -0.021526233269887046], [12.66788646288765, -0.019970614377365282], [12.395389751961583, -0.01919542174969878]], [[12.395389751961583, -0.01919542174969878], [11.970952381104164, -0.01801870922318543], [11.772203734222545, -0.017512753625131963], [11.188785318656395, -0.016034524362694414], [11.191006504574739, -0.01606882607488705], [10.871662769143258, -0.01527548347796171], [10.378765944964606, -0.014157927968538367], [10.123266077981087, -0.013600445086388085]], [[10.123266077981087, -0.013600445086388085], [9.721654120567944, -0.012749197872002394], [9.532212955456256, -0.01238204230817755], [8.97268165250248, -0.011307699961662187], [8.974520369402757, -0.011330801415207963], [8.665394831261434, -0.010753424112514232], [8.182424137552621, -0.00993235322087847], [7.9291681977789805, -0.009520444097158857]], [[7.9291681977789805, -0.009520444097158857], [7.5233243268882735, -0.008881890744741962], [7.328938165248043, -0.008603612895620463], [6.745497097593427, -0.007780504480642467], [6.747010559444611, -0.007795907413866904], [6.416886661834147, -0.0073468327646605686], [5.8852806861732345, -0.00668656573512649], [5.597556773194193, -0.0063449596009297875]], [[5.597556773194193, -0.0063449596009297875], [5.214281656961501, -0.005902129038972106], [5.022855020583522, -0.005695473897142814], [4.423288991027299, -0.005051255670164644], [4.424003601855884, -0.005056877695849244], [4.0617469068646095, -0.004674691529468723], [3.425276780692582, -0.004021514909103419], [3.0433014773728733, -0.003627683578857116]]], SciMLBase.ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Any}, SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}, SciMLBase.StandardODEProblem}(SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}(GasChromatographySimulator.odesystem_r!, LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, SciMLBase.DEFAULT_OBSERVED, nothing), [0.0, 0.0], (0.0, 11.18), Any[GasChromatographySimulator.Column(11.18, 0.000104, [0.000104], 1.04e-7, [1.04e-7], "FS5ms", "H2"), GasChromatographySimulator.Program{GasChromatographySimulator.var"#gf#5"{Matrix{Float64}}}([0.0, 60.0, 1680.0, 60.0, 360.0, 60.0], [40.0, 40.0, 180.0, 180.0, 300.0, 300.0], [411564.0, 411564.0, 411564.0, 411564.0, 411564.0, 411564.0], [101300.0, 101300.0, 101300.0, 101300.0, 101300.0, 101300.0], GasChromatographySimulator.var"#gf#5"{Matrix{Float64}}([0.0 0.0 11.18 0.0; 0.0 0.0 11.18 0.0; … ; 0.0 0.0 11.18 0.0; 0.0 0.0 11.18 0.0]), [0.0 0.0 11.18 0.0; 0.0 0.0 11.18 0.0; … ; 0.0 0.0 11.18 0.0; 0.0 0.0 11.18 0.0], 11181×6 extrapolate(interpolate((0.0:0.001:11.18,::Vector{Float64}), ::Matrix{Float64}, Gridded(Linear())), Flat()) with element type Float64:
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
⋮ ⋮
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15, 6-element extrapolate(interpolate((::Vector{Float64},), ::Vector{Float64}, Gridded(Linear())), Flat()) with element type Float64:
411564.0
411564.0
411564.0
411564.0
411564.0
411564.0, 6-element extrapolate(interpolate((::Vector{Float64},), ::Vector{Float64}, Gridded(Linear())), Flat()) with element type Float64:
101300.0
101300.0
101300.0
101300.0
101300.0
101300.0), GasChromatographySimulator.Substance("C26", "630-1-3", 593.5699999999999, 44.16, 216.77, 0.001, "Leppert2020b, alkane", 7.200161658208628e-5, 0.0, 0.0), GasChromatographySimulator.Options(OwrenZen5(), 1.0e-6, 0.001, "inlet", true, true, "Blumberg", "Pressure")], Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}(), SciMLBase.StandardODEProblem()), OwrenZen5(), OrdinaryDiffEq.InterpolationData{SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}}(SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}(GasChromatographySimulator.odesystem_r!, LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, SciMLBase.DEFAULT_OBSERVED, nothing), [[0.0, 0.0], [36.4444862744329, 1.579268118627557e6], [51.5102531682474, 2.2321209270527777e6], [59.39548135566309, 2.5738156706214817e6], [59.96899626066168, 2.5986680938581103e6], [60.234408802257775, 2.594052747932799e6], [60.349101684023985, 2.5913870234995824e6], [61.48686174125368, 2.5649894614919503e6], [67.11243296152996, 2.4359367988508265e6], [76.020461285172, 2.238024520691209e6] … [1963.9891912125076, 0.27324662177989356], [1974.6768926588054, 0.23625439933833658], [1985.6166377180555, 0.20502783287737014], [1996.782354114574, 0.17857018547276354], [2008.1253357178794, 0.15607543159298384], [2019.5585056777036, 0.1368938103286856], [2030.9263167269653, 0.12051107733168197], [2041.9404558584677, 0.10655261382031742], [2052.0175116603677, 0.09486200869858916], [2058.4576940911807, 0.08748056334857417]], [0.0, 1.7298057351407088e-7, 2.444889216214274e-7, 2.819154693302915e-7, 2.8463760779751227e-7, 2.8589905198827165e-7, 2.8644546979184605e-7, 2.9190964782759027e-7, 3.2012620429042975e-7, 3.691556446083393e-7 … 2.940545044637546, 3.3550956202351676, 3.8482090601813295, 4.4361872044071555, 5.139107314004525, 5.981872890248213, 6.995726192435438, 8.220787491528966, 9.713308206568247, 11.18], [[[0.0, 0.0]], [[2.1068542938955063e8, 9.129742710538527e12], [2.106854291343598e8, 9.129742688421895e12], [2.1068542900676212e8, 9.129742677363377e12], [2.1068542862397364e8, 9.129742644188227e12], [2.1068542862397364e8, 9.129742644188227e12], [2.1068542840523884e8, 9.129742625231125e12], [2.1068542804979238e8, 9.129742594425629e12], [2.106854278583966e8, 9.129742577837918e12]], [[2.106854278583966e8, 9.129742577837918e12], [2.106854277529028e8, 9.129742568695082e12], [2.1068542770015585e8, 9.12974256412366e12], [2.106854275419151e8, 9.1297425504094e12], [2.106854275419151e8, 9.1297425504094e12], [2.1068542745149183e8, 9.129742542572686e12], [2.1068542730455402e8, 9.129742529838016e12], [2.1068542722543365e8, 9.129742522980885e12]], [[2.1068542722543365e8, 9.129742522980885e12], [2.106854271702195e8, 9.129742518195643e12], [2.1068542714261246e8, 9.129742515803018e12], [2.1068542705979133e8, 9.129742508625154e12], [2.1068542705979133e8, 9.129742508625154e12], [2.1068542701246494e8, 9.129742504523516e12], [2.1068542693555957e8, 9.129742497858354e12], [2.1068542689414898e8, 9.129742494269422e12]], [[2.1068542689414898e8, 9.129742494269422e12], [2.1068542689013466e8, 9.129742493921512e12], [2.1068542688812518e8, 9.12974249374736e12], [2.106854268821014e8, 9.129742493225291e12], [2.106854268821014e8, 9.129742493225291e12], [2.1068542687865916e8, 9.129742492926963e12], [2.1068542687306404e8, 9.12974249244205e12], [2.106854268700537e8, 9.129742492181154e12]], [[2.106854268700537e8, 9.129742492181154e12], [2.1064956234730455e8, -4.907154005514008e12], [2.1058983662627813e8, -4.895519868300539e12], [2.1041090851867533e8, -4.908447612780076e12], [2.1041062393797114e8, -4.812694014232162e12], [2.1030877893880403e8, -4.907388926844348e12], [2.1014294160537443e8, -4.874166354907842e12], [2.1005383474934492e8, -4.88289019527668e12]], [[2.1005383474934492e8, -4.88289019527668e12], [2.1000238014542374e8, -4.881441387472777e12], [2.0997667199742615e8, -4.880717474929564e12], [2.0989956740923056e8, -4.878545548328455e12], [2.0989956745091727e8, -4.878545550729561e12], [2.0985553374337646e8, -4.877304804873912e12], [2.097840194801313e8, -4.875289151953951e12], [2.0974553251446438e8, -4.874204084825922e12]], [[2.0974553251446438e8, -4.874204084825922e12], [2.0923312988274118e8, -4.859731754222953e12], [2.089788277220621e8, -4.852544966672877e12], [2.082178447003917e8, -4.830966333259906e12], [2.0821788601282728e8, -4.830968732537408e12], [2.0778555123156482e8, -4.818672861029773e12], [2.0708699833622494e8, -4.798754257488965e12], [2.0671284167621207e8, -4.78805842706214e12]], [[2.0671284167621207e8, -4.78805842706214e12], [2.0415824612021375e8, -4.714366494532878e12], [2.029284943336198e8, -4.678865306799398e12], [1.992824109512023e8, -4.571960727755437e12], [1.992876897085977e8, -4.572289441788356e12], [1.9725929785741428e8, -4.512012816438522e12], [1.940611688444919e8, -4.416397732679444e12], [1.9238201449517912e8, -4.3657660187809385e12]], [[1.9238201449517912e8, -4.3657660187809385e12], [1.8856718091927814e8, -4.2492159079584834e12], [1.867730668386579e8, -4.194873504999828e12], [1.814849903398357e8, -4.0312844009818496e12], [1.8150528513851148e8, -4.032855837290466e12], [1.78601226157403e8, -3.9414206059507705e12], [1.741144977903087e8, -3.8008977369646963e12], [1.7179010090236774e8, -3.727608763893374e12]] … [[32.10698626441984, -0.14969479236247532], [31.285377945330744, -0.14047544202791235], [30.903932488321974, -0.13652557186095193], [29.787909223141313, -0.12495364046963132], [29.79348440692801, -0.1252656188677973], [29.186739470055223, -0.11902314734627652], [28.261553233341047, -0.11031867341085921], [27.786618897268788, -0.10597896428811084]], [[27.786618897268788, -0.10597896428811084], [27.059336726753305, -0.09947924152280424], [26.721657713037448, -0.09669388927193706], [25.734015348628144, -0.08853596194175198], [25.738881644396084, -0.08875375880788511], [25.202065618145895, -0.08435489262787105], [24.38344771689112, -0.0782173264592691], [23.963236621620116, -0.07515755540393901]], [[23.963236621620116, -0.07515755540393901], [23.318381657380563, -0.07056481448293628], [23.01887615750398, -0.06859604841003955], [22.143099439823303, -0.0628320240664563], [22.147324189485698, -0.06298383360682543], [21.671347543643133, -0.0598777115051363], [20.945227886841636, -0.05554030815059207], [20.572429932900487, -0.053378222981727654]], [[20.572429932900487, -0.053378222981727654], [19.998928798145524, -0.05012543983495356], [19.732377498313546, -0.048730505216139836], [18.953010098985533, -0.044648566424458004], [18.956654673363232, -0.04475410898809976], [18.53297682182048, -0.04255626276438907], [17.886073937974643, -0.03948386342781819], [17.553758101696758, -0.037952608659665946]], [[17.553758101696758, -0.037952608659665946], [17.041007946674135, -0.03564315975383239], [16.80238670292516, -0.03465223869167955], [16.104470398905963, -0.031754332908856965], [16.10759082846268, -0.03182741397591998], [15.727884667046013, -0.030268750932387338], [15.147135718991535, -0.02808665571063616], [14.848428157484202, -0.026999309631600743]], [[14.848428157484202, -0.026999309631600743], [14.385743337482529, -0.02535472446495907], [14.169937983355775, -0.02464853697449589], [13.538092843661522, -0.02258465359820425], [13.540740286705786, -0.022634948447395668], [13.19632386607867, -0.021526233269887046], [12.66788646288765, -0.019970614377365282], [12.395389751961583, -0.01919542174969878]], [[12.395389751961583, -0.01919542174969878], [11.970952381104164, -0.01801870922318543], [11.772203734222545, -0.017512753625131963], [11.188785318656395, -0.016034524362694414], [11.191006504574739, -0.01606882607488705], [10.871662769143258, -0.01527548347796171], [10.378765944964606, -0.014157927968538367], [10.123266077981087, -0.013600445086388085]], [[10.123266077981087, -0.013600445086388085], [9.721654120567944, -0.012749197872002394], [9.532212955456256, -0.01238204230817755], [8.97268165250248, -0.011307699961662187], [8.974520369402757, -0.011330801415207963], [8.665394831261434, -0.010753424112514232], [8.182424137552621, -0.00993235322087847], [7.9291681977789805, -0.009520444097158857]], [[7.9291681977789805, -0.009520444097158857], [7.5233243268882735, -0.008881890744741962], [7.328938165248043, -0.008603612895620463], [6.745497097593427, -0.007780504480642467], [6.747010559444611, -0.007795907413866904], [6.416886661834147, -0.0073468327646605686], [5.8852806861732345, -0.00668656573512649], [5.597556773194193, -0.0063449596009297875]], [[5.597556773194193, -0.0063449596009297875], [5.214281656961501, -0.005902129038972106], [5.022855020583522, -0.005695473897142814], [4.423288991027299, -0.005051255670164644], [4.424003601855884, -0.005056877695849244], [4.0617469068646095, -0.004674691529468723], [3.425276780692582, -0.004021514909103419], [3.0433014773728733, -0.003627683578857116]]], true, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}([2058.4576940911807, 0.08748056334857417], [2052.0175116603677, 0.09486200869858916], [5.597556773194193, -0.0063449596009297875], [5.214281656961501, -0.005902129038972106], [5.022855020583522, -0.005695473897142814], [4.423288991027299, -0.005051255670164644], [4.424003601855884, -0.005056877695849244], [4.0617469068646095, -0.004674691529468723], [3.425276780692582, -0.004021514909103419], [3.0433014773728733, -0.003627683578857116], [0.0032794386326972977, -4.201526080027489e-6], [2057.8634719954694, 0.08818502248465862], [0.001593152508773165, -0.04382889673465944], OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}(0.16666666666666666, 0.0625, 0.1875, 0.25, -0.75, -0.75, 3.75, -3.0, 0.5, 0.26895043731778423, -0.7084548104956269, 0.8658892128279884, 0.15462307371928363, 0.06184922948771345, -0.02947695035460993, 0.18500664893617022, 0.4802345261121857, -0.5337849069148937, -0.013090093085106383, 0.7861107753062541, 0.08783068783068783, 0.3006060606060606, 0.22777777777777777, 0.027777777777777776, 0.06218596218596219, 0.2938217338217338, 0.16666666666666666, 0.25, 0.5, 0.5, 0.6428571428571429, 0.875, -0.19894179894179895, 0.9115151515151515, -1.9777777777777779, -0.1111111111111111, 1.67013727013727, -0.2938217338217338, 1.892063492063492, -6.067155067155067, 7.282458282458283, -4.0195360195360195, -7.214545454545455, 20.676923076923078, -20.31142191142191, 7.14965034965035, 7.866666666666666, -18.78205128205128, 13.508547008547009, -2.3653846153846154, 2.0, -5.294871794871795, 4.534188034188034, -1.2115384615384615, -1.4924630924630924, 1.5785667324128863, 1.1958838881915805, -1.219801565955412, -7.051721611721612, 16.273203719357564, -11.978886071193763, 3.0512256973795435, 4.0, -8.384615384615385, 5.769230769230769, -1.3846153846153846))), true, 0, DiffEqBase.DEStats
Number of function 1 evaluations: 1326
Number of function 2 evaluations: 0
Number of W matrix evaluations: 0
Number of linear solves: 0
Number of Jacobians created: 0
Number of nonlinear solver iterations: 0
Number of nonlinear solver convergence failures: 0
Number of rootfind condition calls: 0
Number of accepted steps: 132
Number of rejected steps: 57, :Success), SciMLBase.ODESolution{Float64, 2, Vector{Vector{Float64}}, Nothing, Nothing, Vector{Float64}, Vector{Vector{Vector{Float64}}}, SciMLBase.ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Any}, SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}, SciMLBase.StandardODEProblem}, OwrenZen5, OrdinaryDiffEq.InterpolationData{SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}}, DiffEqBase.DEStats}([[0.0, 0.0], [25.794159430999528, 1.4903956704883403e6], [48.38103410428731, 2.79547328656596e6], [58.63742215444283, 3.3880910181560814e6], [59.74382867798106, 3.4520195786222178e6], [60.01307613797211, 3.4675767921403954e6], [62.660808647662655, 3.390997598672951e6], [69.58984592248531, 3.19252875685878e6], [78.80893466817422, 2.935730724883582e6], [89.78943262597996, 2.6451376771999e6] … [1992.2356999486292, 0.24628281003506447], [2003.3715092285142, 0.21393949211100086], [2014.7437166491877, 0.18642215278507954], [2026.3154379481373, 0.16293563119053517], [2038.0209438817963, 0.1428326882999334], [2049.744839492101, 0.1255900954977622], [2061.2803941976645, 0.11079995188778449], [2072.2345876948516, 0.09819669134584942], [2081.7591324697382, 0.08782033810017538], [2084.514579060352, 0.08474595786232589]], nothing, nothing, [0.0, 9.348436962863668e-8, 1.7534475178760253e-7, 2.12516421600279e-7, 2.165263106378246e-7, 2.1750212957539335e-7, 2.2726031895108073e-7, 2.54376105313814e-7, 2.942690430918181e-7, 3.4810669768039747e-7 … 2.928724830145856, 3.3824049477247042, 3.9234485187423185, 4.570176578373655, 5.345198299796014, 6.2766568363124735, 7.400118623735283, 8.762296708234569, 10.438918999243874, 11.18], [[[0.0, 0.0]], [[2.759194888313451e8, 1.5942725850990332e13], [2.759194886507287e8, 1.5942725830118176e13], [2.7591948856042045e8, 1.594272581968209e13], [2.7591948828949594e8, 1.5942725788373865e13], [2.7591948828949594e8, 1.5942725788373865e13], [2.759194881346829e8, 1.5942725770483555e13], [2.7591948788310903e8, 1.5942725741411504e13], [2.7591948774764663e8, 1.594272572575737e13]], [[2.7591948774764663e8, 1.594272572575737e13], [2.759194875894884e8, 1.5942725707480492e13], [2.759194875104093e8, 1.5942725698342057e13], [2.7591948727317286e8, 1.5942725670926848e13], [2.7591948727317286e8, 1.5942725670926848e13], [2.7591948713760763e8, 1.5942725655260832e13], [2.759194869173157e8, 1.5942725629803742e13], [2.75919486798697e8, 1.5942725616096078e13]], [[2.75919486798697e8, 1.5942725616096078e13], [2.7591948672687954e8, 1.5942725607796803e13], [2.759194866909708e8, 1.5942725603647158e13], [2.759194865832386e8, 1.594272559119755e13], [2.759194865832386e8, 1.594272559119755e13], [2.759194865216867e8, 1.594272558408457e13], [2.759194864216552e8, 1.5942725572524861e13], [2.75919486367792e8, 1.5942725566300398e13]], [[2.75919486367792e8, 1.5942725566300398e13], [2.759194863600447e8, 1.5942725565405113e13], [2.759194863561711e8, 1.5942725564957473e13], [2.7591948634455013e8, 1.5942725563614547e13], [2.7591948634455013e8, 1.5942725563614547e13], [2.759194863379106e8, 1.594272556284728e13], [2.7591948632711875e8, 1.5942725561600164e13], [2.759194863213082e8, 1.594272556092869e13]], [[2.759194863213082e8, 1.594272556092869e13], [2.759194863194229e8, 1.5942725560710826e13], [2.7591948631848127e8, 1.5942725560602014e13], [2.7591948631565225e8, 1.5942725560275086e13], [2.7591948631565225e8, 1.5942725560275086e13], [2.7591948631403035e8, 1.5942725560087656e13], [2.7591948631141025e8, 1.594272555978488e13], [2.7587436505641747e8, -7.991376137729678e12]], [[2.7587436505641747e8, -7.991376137729678e12], [2.743308482014357e8, -7.943152613034166e12], [2.7357216054405516e8, -7.919310964595955e12], [2.713088917875512e8, -7.847485729247865e12], [2.713095449901271e8, -7.8475144871849e12], [2.700328480666158e8, -7.806574795802928e12], [2.679854694005376e8, -7.740322667881738e12], [2.6689608107881635e8, -7.704767841440297e12]], [[2.6689608107881635e8, -7.704767841440297e12], [2.629084974763129e8, -7.572647838878639e12], [2.6100425569891447e8, -7.509000755138529e12], [2.553704510907681e8, -7.31655168253434e12], [2.553824955833921e8, -7.317240477464633e12], [2.5226317967154908e8, -7.208432271856311e12], [2.473783957630462e8, -7.035816422729664e12], [2.4482591374534798e8, -6.944356938248971e12]], [[2.4482591374534798e8, -6.944356938248971e12], [2.3992534444257975e8, -6.765817284137053e12], [2.3762195687085542e8, -6.682154952849443e12], [2.3083371921991926e8, -6.429781337697645e12], [2.3086028407767978e8, -6.432013844640516e12], [2.2713344799647152e8, -6.290590568649086e12], [2.213785902919938e8, -6.072190577668113e12], [2.1839816275311476e8, -5.958006148076064e12]], [[2.1839816275311476e8, -5.958006148076064e12], [2.1317815101427838e8, -5.755442157164383e12], [2.107544614432726e8, -5.663099117932252e12], [2.0363086714606974e8, -5.385313115646984e12], [2.0367119740017354e8, -5.389680493231892e12], [1.9978222312415692e8, -5.234953667992473e12], [1.9384484296995518e8, -5.003080114876476e12], [1.9078946680973372e8, -4.883257113256235e12]] … [[30.77130824258604, -0.11860394173061783], [29.959935495288498, -0.11140797935313063], [29.58387280378597, -0.10832686127873781], [28.48405239773447, -0.09928726916088992], [28.48980788191048, -0.09953769556549211], [27.89233756602983, -0.09465206403950747], [26.982695369276243, -0.08784534733068528], [26.51613295807781, -0.08444844983340616]], [[26.51613295807781, -0.08444844983340616], [25.800244567668717, -0.0793437770931746], [25.46837113091203, -0.07715739379243877], [24.49808914082673, -0.07074474949610282], [24.503078768658227, -0.07092033247353718], [23.976080189941577, -0.06745623124240567], [23.173557371693533, -0.06262624453570909], [22.76191993875521, -0.060216001105611296]], [[22.76191993875521, -0.060216001105611296], [22.128972332737575, -0.05658634124504633], [21.83540173608769, -0.055031133565847774], [20.977272807417243, -0.050471645108792054], [20.98157264423659, -0.05059453682447829], [20.515478137872613, -0.04813327651603161], [19.80527866050254, -0.04469820877964033], [19.44087953687074, -0.042984302089013215]], [[19.44087953687074, -0.042984302089013215], [18.879175153075106, -0.04039755182650475], [18.61839882676841, -0.03928869155478835], [17.856095873890496, -0.03603958650586973], [17.859774978122722, -0.03612533048820085], [17.44555489817186, -0.03437312328903092], [16.8136337670386, -0.03192456778705127], [16.48913597481707, -0.030703126375547386]], [[16.48913597481707, -0.030703126375547386], [15.987372575608578, -0.02885516049433386], [15.754032697566045, -0.02806251718303446], [15.071569255652193, -0.02574150168336388], [15.074690623388719, -0.025801030530739864], [14.703421117683277, -0.024550845344149242], [14.135744980577314, -0.022800761990946793], [13.843740597793335, -0.021927896798266483]], [[13.843740597793335, -0.021927896798266483], [13.390283227433452, -0.020603475174607176], [13.178794505801399, -0.020034873462556387], [12.559292860315507, -0.018370904014162387], [12.561913982568855, -0.018411924309927656], [12.224006523623116, -0.017516802351725272], [11.705183549724815, -0.01626026317292575], [11.437387063164012, -0.01563340622315477]], [[11.437387063164012, -0.01563340622315477], [11.01878150792764, -0.014678336197953723], [10.82253680103821, -0.014267564488197654], [10.245554614263034, -0.013065332972118784], [10.247728131844918, -0.013093295345867853], [9.931188517898754, -0.012446898304422055], [9.441243863984521, -0.011534435582156359], [9.186519659630589, -0.011078238338239042]], [[9.186519659630589, -0.011078238338239042], [8.783566141333234, -0.010377508916696608], [8.592773339555121, -0.010074628673640663], [8.026713159861465, -0.009184816254201401], [8.02849097003657, -0.009203619874873954], [7.713708988673121, -0.008723062083665283], [7.217886795021174, -0.008034043594872396], [6.955656064380171, -0.007685578728404354]], [[6.955656064380171, -0.007685578728404354], [6.5273109079091185, -0.007134646380183254], [6.319820953882714, -0.00689180543252196], [5.687589521348274, -0.006160868366436858], [5.689079491765033, -0.00617364217111904], [5.323062677762132, -0.0057642040642810815], [4.715582270359798, -0.005135236105887344], [4.3747513071274, -0.004792939751623829]], [[4.3747513071274, -0.004792939751623829], [4.166922925734744, -0.004586391879474687], [4.061432653558884, -0.0044838182276782535], [3.7325651053043574, -0.0041622082759375355], [3.732635555251449, -0.00416269816983687], [3.5355500768916843, -0.003970041139916266], [3.196751224512554, -0.0036386269738103417], [3.0020840817735213, -0.0034466511849334633]]], SciMLBase.ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Any}, SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}, SciMLBase.StandardODEProblem}(SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}(GasChromatographySimulator.odesystem_r!, LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, SciMLBase.DEFAULT_OBSERVED, nothing), [0.0, 0.0], (0.0, 11.18), Any[GasChromatographySimulator.Column(11.18, 0.000104, [0.000104], 1.04e-7, [1.04e-7], "FS5ms", "H2"), GasChromatographySimulator.Program{GasChromatographySimulator.var"#gf#5"{Matrix{Float64}}}([0.0, 60.0, 1680.0, 60.0, 360.0, 60.0], [40.0, 40.0, 180.0, 180.0, 300.0, 300.0], [411564.0, 411564.0, 411564.0, 411564.0, 411564.0, 411564.0], [101300.0, 101300.0, 101300.0, 101300.0, 101300.0, 101300.0], GasChromatographySimulator.var"#gf#5"{Matrix{Float64}}([0.0 0.0 11.18 0.0; 0.0 0.0 11.18 0.0; … ; 0.0 0.0 11.18 0.0; 0.0 0.0 11.18 0.0]), [0.0 0.0 11.18 0.0; 0.0 0.0 11.18 0.0; … ; 0.0 0.0 11.18 0.0; 0.0 0.0 11.18 0.0], 11181×6 extrapolate(interpolate((0.0:0.001:11.18,::Vector{Float64}), ::Matrix{Float64}, Gridded(Linear())), Flat()) with element type Float64:
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
⋮ ⋮
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15, 6-element extrapolate(interpolate((::Vector{Float64},), ::Vector{Float64}, Gridded(Linear())), Flat()) with element type Float64:
411564.0
411564.0
411564.0
411564.0
411564.0
411564.0, 6-element extrapolate(interpolate((::Vector{Float64},), ::Vector{Float64}, Gridded(Linear())), Flat()) with element type Float64:
101300.0
101300.0
101300.0
101300.0
101300.0
101300.0), GasChromatographySimulator.Substance("C27", "593-49-7", 599.77, 41.9, 184.17, 0.001, "Leppert2020b, alkane, alkanes", 7.054117055654164e-5, 0.0, 0.0), GasChromatographySimulator.Options(OwrenZen5(), 1.0e-6, 0.001, "inlet", true, true, "Blumberg", "Pressure")], Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}(), SciMLBase.StandardODEProblem()), OwrenZen5(), OrdinaryDiffEq.InterpolationData{SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}}(SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}(GasChromatographySimulator.odesystem_r!, LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, SciMLBase.DEFAULT_OBSERVED, nothing), [[0.0, 0.0], [25.794159430999528, 1.4903956704883403e6], [48.38103410428731, 2.79547328656596e6], [58.63742215444283, 3.3880910181560814e6], [59.74382867798106, 3.4520195786222178e6], [60.01307613797211, 3.4675767921403954e6], [62.660808647662655, 3.390997598672951e6], [69.58984592248531, 3.19252875685878e6], [78.80893466817422, 2.935730724883582e6], [89.78943262597996, 2.6451376771999e6] … [1992.2356999486292, 0.24628281003506447], [2003.3715092285142, 0.21393949211100086], [2014.7437166491877, 0.18642215278507954], [2026.3154379481373, 0.16293563119053517], [2038.0209438817963, 0.1428326882999334], [2049.744839492101, 0.1255900954977622], [2061.2803941976645, 0.11079995188778449], [2072.2345876948516, 0.09819669134584942], [2081.7591324697382, 0.08782033810017538], [2084.514579060352, 0.08474595786232589]], [0.0, 9.348436962863668e-8, 1.7534475178760253e-7, 2.12516421600279e-7, 2.165263106378246e-7, 2.1750212957539335e-7, 2.2726031895108073e-7, 2.54376105313814e-7, 2.942690430918181e-7, 3.4810669768039747e-7 … 2.928724830145856, 3.3824049477247042, 3.9234485187423185, 4.570176578373655, 5.345198299796014, 6.2766568363124735, 7.400118623735283, 8.762296708234569, 10.438918999243874, 11.18], [[[0.0, 0.0]], [[2.759194888313451e8, 1.5942725850990332e13], [2.759194886507287e8, 1.5942725830118176e13], [2.7591948856042045e8, 1.594272581968209e13], [2.7591948828949594e8, 1.5942725788373865e13], [2.7591948828949594e8, 1.5942725788373865e13], [2.759194881346829e8, 1.5942725770483555e13], [2.7591948788310903e8, 1.5942725741411504e13], [2.7591948774764663e8, 1.594272572575737e13]], [[2.7591948774764663e8, 1.594272572575737e13], [2.759194875894884e8, 1.5942725707480492e13], [2.759194875104093e8, 1.5942725698342057e13], [2.7591948727317286e8, 1.5942725670926848e13], [2.7591948727317286e8, 1.5942725670926848e13], [2.7591948713760763e8, 1.5942725655260832e13], [2.759194869173157e8, 1.5942725629803742e13], [2.75919486798697e8, 1.5942725616096078e13]], [[2.75919486798697e8, 1.5942725616096078e13], [2.7591948672687954e8, 1.5942725607796803e13], [2.759194866909708e8, 1.5942725603647158e13], [2.759194865832386e8, 1.594272559119755e13], [2.759194865832386e8, 1.594272559119755e13], [2.759194865216867e8, 1.594272558408457e13], [2.759194864216552e8, 1.5942725572524861e13], [2.75919486367792e8, 1.5942725566300398e13]], [[2.75919486367792e8, 1.5942725566300398e13], [2.759194863600447e8, 1.5942725565405113e13], [2.759194863561711e8, 1.5942725564957473e13], [2.7591948634455013e8, 1.5942725563614547e13], [2.7591948634455013e8, 1.5942725563614547e13], [2.759194863379106e8, 1.594272556284728e13], [2.7591948632711875e8, 1.5942725561600164e13], [2.759194863213082e8, 1.594272556092869e13]], [[2.759194863213082e8, 1.594272556092869e13], [2.759194863194229e8, 1.5942725560710826e13], [2.7591948631848127e8, 1.5942725560602014e13], [2.7591948631565225e8, 1.5942725560275086e13], [2.7591948631565225e8, 1.5942725560275086e13], [2.7591948631403035e8, 1.5942725560087656e13], [2.7591948631141025e8, 1.594272555978488e13], [2.7587436505641747e8, -7.991376137729678e12]], [[2.7587436505641747e8, -7.991376137729678e12], [2.743308482014357e8, -7.943152613034166e12], [2.7357216054405516e8, -7.919310964595955e12], [2.713088917875512e8, -7.847485729247865e12], [2.713095449901271e8, -7.8475144871849e12], [2.700328480666158e8, -7.806574795802928e12], [2.679854694005376e8, -7.740322667881738e12], [2.6689608107881635e8, -7.704767841440297e12]], [[2.6689608107881635e8, -7.704767841440297e12], [2.629084974763129e8, -7.572647838878639e12], [2.6100425569891447e8, -7.509000755138529e12], [2.553704510907681e8, -7.31655168253434e12], [2.553824955833921e8, -7.317240477464633e12], [2.5226317967154908e8, -7.208432271856311e12], [2.473783957630462e8, -7.035816422729664e12], [2.4482591374534798e8, -6.944356938248971e12]], [[2.4482591374534798e8, -6.944356938248971e12], [2.3992534444257975e8, -6.765817284137053e12], [2.3762195687085542e8, -6.682154952849443e12], [2.3083371921991926e8, -6.429781337697645e12], [2.3086028407767978e8, -6.432013844640516e12], [2.2713344799647152e8, -6.290590568649086e12], [2.213785902919938e8, -6.072190577668113e12], [2.1839816275311476e8, -5.958006148076064e12]], [[2.1839816275311476e8, -5.958006148076064e12], [2.1317815101427838e8, -5.755442157164383e12], [2.107544614432726e8, -5.663099117932252e12], [2.0363086714606974e8, -5.385313115646984e12], [2.0367119740017354e8, -5.389680493231892e12], [1.9978222312415692e8, -5.234953667992473e12], [1.9384484296995518e8, -5.003080114876476e12], [1.9078946680973372e8, -4.883257113256235e12]] … [[30.77130824258604, -0.11860394173061783], [29.959935495288498, -0.11140797935313063], [29.58387280378597, -0.10832686127873781], [28.48405239773447, -0.09928726916088992], [28.48980788191048, -0.09953769556549211], [27.89233756602983, -0.09465206403950747], [26.982695369276243, -0.08784534733068528], [26.51613295807781, -0.08444844983340616]], [[26.51613295807781, -0.08444844983340616], [25.800244567668717, -0.0793437770931746], [25.46837113091203, -0.07715739379243877], [24.49808914082673, -0.07074474949610282], [24.503078768658227, -0.07092033247353718], [23.976080189941577, -0.06745623124240567], [23.173557371693533, -0.06262624453570909], [22.76191993875521, -0.060216001105611296]], [[22.76191993875521, -0.060216001105611296], [22.128972332737575, -0.05658634124504633], [21.83540173608769, -0.055031133565847774], [20.977272807417243, -0.050471645108792054], [20.98157264423659, -0.05059453682447829], [20.515478137872613, -0.04813327651603161], [19.80527866050254, -0.04469820877964033], [19.44087953687074, -0.042984302089013215]], [[19.44087953687074, -0.042984302089013215], [18.879175153075106, -0.04039755182650475], [18.61839882676841, -0.03928869155478835], [17.856095873890496, -0.03603958650586973], [17.859774978122722, -0.03612533048820085], [17.44555489817186, -0.03437312328903092], [16.8136337670386, -0.03192456778705127], [16.48913597481707, -0.030703126375547386]], [[16.48913597481707, -0.030703126375547386], [15.987372575608578, -0.02885516049433386], [15.754032697566045, -0.02806251718303446], [15.071569255652193, -0.02574150168336388], [15.074690623388719, -0.025801030530739864], [14.703421117683277, -0.024550845344149242], [14.135744980577314, -0.022800761990946793], [13.843740597793335, -0.021927896798266483]], [[13.843740597793335, -0.021927896798266483], [13.390283227433452, -0.020603475174607176], [13.178794505801399, -0.020034873462556387], [12.559292860315507, -0.018370904014162387], [12.561913982568855, -0.018411924309927656], [12.224006523623116, -0.017516802351725272], [11.705183549724815, -0.01626026317292575], [11.437387063164012, -0.01563340622315477]], [[11.437387063164012, -0.01563340622315477], [11.01878150792764, -0.014678336197953723], [10.82253680103821, -0.014267564488197654], [10.245554614263034, -0.013065332972118784], [10.247728131844918, -0.013093295345867853], [9.931188517898754, -0.012446898304422055], [9.441243863984521, -0.011534435582156359], [9.186519659630589, -0.011078238338239042]], [[9.186519659630589, -0.011078238338239042], [8.783566141333234, -0.010377508916696608], [8.592773339555121, -0.010074628673640663], [8.026713159861465, -0.009184816254201401], [8.02849097003657, -0.009203619874873954], [7.713708988673121, -0.008723062083665283], [7.217886795021174, -0.008034043594872396], [6.955656064380171, -0.007685578728404354]], [[6.955656064380171, -0.007685578728404354], [6.5273109079091185, -0.007134646380183254], [6.319820953882714, -0.00689180543252196], [5.687589521348274, -0.006160868366436858], [5.689079491765033, -0.00617364217111904], [5.323062677762132, -0.0057642040642810815], [4.715582270359798, -0.005135236105887344], [4.3747513071274, -0.004792939751623829]], [[4.3747513071274, -0.004792939751623829], [4.166922925734744, -0.004586391879474687], [4.061432653558884, -0.0044838182276782535], [3.7325651053043574, -0.0041622082759375355], [3.732635555251449, -0.00416269816983687], [3.5355500768916843, -0.003970041139916266], [3.196751224512554, -0.0036386269738103417], [3.0020840817735213, -0.0034466511849334633]]], true, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}([2084.514579060352, 0.08474595786232589], [2081.7591324697382, 0.08782033810017538], [4.3747513071274, -0.004792939751623829], [4.166922925734744, -0.004586391879474687], [4.061432653558884, -0.0044838182276782535], [3.7325651053043574, -0.0041622082759375355], [3.732635555251449, -0.00416269816983687], [3.5355500768916843, -0.003970041139916266], [3.196751224512554, -0.0036386269738103417], [3.0020840817735213, -0.0034466511849334633], [0.0002918886758046514, -3.8026854838486575e-7], [2084.227288553582, 0.0850744891323977], [0.0001400271020935366, -0.004281322910029712], OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}(0.16666666666666666, 0.0625, 0.1875, 0.25, -0.75, -0.75, 3.75, -3.0, 0.5, 0.26895043731778423, -0.7084548104956269, 0.8658892128279884, 0.15462307371928363, 0.06184922948771345, -0.02947695035460993, 0.18500664893617022, 0.4802345261121857, -0.5337849069148937, -0.013090093085106383, 0.7861107753062541, 0.08783068783068783, 0.3006060606060606, 0.22777777777777777, 0.027777777777777776, 0.06218596218596219, 0.2938217338217338, 0.16666666666666666, 0.25, 0.5, 0.5, 0.6428571428571429, 0.875, -0.19894179894179895, 0.9115151515151515, -1.9777777777777779, -0.1111111111111111, 1.67013727013727, -0.2938217338217338, 1.892063492063492, -6.067155067155067, 7.282458282458283, -4.0195360195360195, -7.214545454545455, 20.676923076923078, -20.31142191142191, 7.14965034965035, 7.866666666666666, -18.78205128205128, 13.508547008547009, -2.3653846153846154, 2.0, -5.294871794871795, 4.534188034188034, -1.2115384615384615, -1.4924630924630924, 1.5785667324128863, 1.1958838881915805, -1.219801565955412, -7.051721611721612, 16.273203719357564, -11.978886071193763, 3.0512256973795435, 4.0, -8.384615384615385, 5.769230769230769, -1.3846153846153846))), true, 0, DiffEqBase.DEStats
Number of function 1 evaluations: 1270
Number of function 2 evaluations: 0
Number of W matrix evaluations: 0
Number of linear solves: 0
Number of Jacobians created: 0
Number of nonlinear solver iterations: 0
Number of nonlinear solver convergence failures: 0
Number of rootfind condition calls: 0
Number of accepted steps: 129
Number of rejected steps: 52, :Success), SciMLBase.ODESolution{Float64, 2, Vector{Vector{Float64}}, Nothing, Nothing, Vector{Float64}, Vector{Vector{Vector{Float64}}}, SciMLBase.ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Any}, SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}, SciMLBase.StandardODEProblem}, OwrenZen5, OrdinaryDiffEq.InterpolationData{SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}}, DiffEqBase.DEStats}([[0.0, 0.0], [39.20413519851618, 5.083069919161066e6], [52.16962487312537, 6.764129585437992e6], [59.38992783597706, 7.7002886033623535e6], [59.95140480822078, 7.773087727372242e6], [60.21530872403701, 7.7592556250414895e6], [60.32940843271148, 7.751273457312373e6], [61.461307866459315, 7.672230157916223e6], [67.08001315826495, 7.284347772060995e6], [75.98752956664626, 6.689045662846668e6] … [2014.725458899351, 0.235417096160731], [2026.1757000793782, 0.2053636851388537], [2037.864395079801, 0.17960653077269012], [2049.7519643566266, 0.15747489417922195], [2061.7690608944586, 0.13841560813613907], [2073.7948609758587, 0.1219757471534179], [2085.613270134666, 0.10779902580116515], [2096.8125522527052, 0.095656900069775], [2106.4980220259276, 0.08561881915196241], [2109.0604852940355, 0.08287441784301582]], nothing, nothing, [0.0, 6.443422561125131e-8, 8.574374523535688e-8, 9.761072377974756e-8, 9.853354311556449e-8, 9.896777274301707e-8, 9.915595908683831e-8, 1.0103782252505072e-7, 1.1079431489655656e-7, 1.2777059469110027e-7 … 2.786113903959678, 3.246921178625437, 3.797694721296355, 4.45738835166793, 5.249393581975161, 6.202838963071345, 7.354570342388651, 8.75314311337818, 10.47922075002294, 11.18], [[[0.0, 0.0]], [[6.084365083877919e8, 7.888773217496178e13], [6.08436508113276e8, 7.888773210377628e13], [6.084365079760114e8, 7.888773206818177e13], [6.084365075642439e8, 7.888773196140512e13], [6.084365075642439e8, 7.888773196140512e13], [6.084365073289444e8, 7.888773190038894e13], [6.08436506946583e8, 7.888773180123766e13], [6.084365067406893e8, 7.888773174784673e13]], [[6.084365067406893e8, 7.888773174784673e13], [6.084365066499088e8, 7.888773172430619e13], [6.08436506604515e8, 7.8887731712535e13], [6.084365064683342e8, 7.888773167722156e13], [6.084365064683342e8, 7.888773167722156e13], [6.084365063905168e8, 7.888773165704248e13], [6.08436506264063e8, 7.888773162425139e13], [6.084365061959726e8, 7.888773160659466e13]], [[6.084365061959726e8, 7.888773160659466e13], [6.084365061454079e8, 7.888773159348258e13], [6.084365061201353e8, 7.888773158692908e13], [6.084365060442915e8, 7.888773156726178e13], [6.084365060442915e8, 7.888773156726178e13], [6.084365060009626e8, 7.888773155602605e13], [6.084365059305423e8, 7.888773153776516e13], [6.084365058926235e8, 7.888773152793233e13]], [[6.084365058926235e8, 7.888773152793233e13], [6.084365058886923e8, 7.888773152691288e13], [6.084365058867263e8, 7.888773152640308e13], [6.084365058808289e8, 7.88877315248738e13], [6.084365058808289e8, 7.88877315248738e13], [6.084365058774589e8, 7.888773152399995e13], [6.084365058719828e8, 7.88877315225799e13], [6.084365058690342e8, 7.888773152181528e13]], [[6.084365058690342e8, 7.888773152181528e13], [6.084365058671842e8, 7.888773152133558e13], [6.083001419938538e8, -4.271876228911408e13], [6.077848923924593e8, -4.205646667754441e13], [6.077841480257921e8, -4.4943532764422375e13], [6.074908221167163e8, -4.208114955506997e13], [6.070132558603408e8, -4.253183549340822e13], [6.067567008590299e8, -4.245410769626267e13]], [[6.067567008590299e8, -4.245410769626267e13], [6.066084621389997e8, -4.244149714301311e13], [6.065343977900921e8, -4.243519616776061e13], [6.063122616958413e8, -4.241629165893908e13], [6.063122618153096e8, -4.241629167991672e13], [6.061854017088019e8, -4.2405492243438266e13], [6.059793703354111e8, -4.238794810236442e13], [6.058684898324304e8, -4.237850377217961e13]], [[6.058684898324304e8, -4.237850377217961e13], [6.043922544454877e8, -4.225254007622028e13], [6.036595914055448e8, -4.218999036358694e13], [6.014671198320237e8, -4.2002187961540125e13], [6.014672382295414e8, -4.2002208921101984e13], [6.002216114492416e8, -4.189520042228355e13], [5.982089266013051e8, -4.172185981327695e13], [5.971308789564788e8, -4.162878331716158e13]], [[5.971308789564788e8, -4.162878331716158e13], [5.897410074296151e8, -4.098500297557019e13], [5.86183742667963e8, -4.067495653514466e13], [5.75636757398756e8, -3.9741403128420984e13], [5.75652071051652e8, -3.974430572659194e13], [5.697846124546565e8, -3.9218024982073266e13], [5.60533703096582e8, -3.838342663749766e13], [5.556766383305717e8, -3.794155067317474e13]], [[5.556766383305717e8, -3.794155067317474e13], [5.44627004756397e8, -3.692313365805294e13], [5.394311293582743e8, -3.644852428803698e13], [5.2411659868315864e8, -3.5019887104297266e13], [5.241757135669312e8, -3.5033764380421617e13], [5.15765818440455e8, -3.4235364274280883e13], [5.027742548887171e8, -3.300895662617317e13], [4.9604426569145614e8, -3.2369465922261188e13]] … [[31.279971853051652, -0.10760435560541355], [30.438696824676523, -0.10117794754234932], [30.049456599271632, -0.09842736452780992], [28.911572569535842, -0.09034515750103293], [28.917820994637744, -0.09057496715406797], [28.30016766931603, -0.08619783362171216], [27.361344910565105, -0.08010356689647279], [26.88024821790748, -0.07705886278954666]], [[26.88024821790748, -0.07705886278954666], [26.140755634533246, -0.07246849544158035], [25.79851999311055, -0.07050319617420023], [24.798364636731407, -0.06473027249170209], [24.803752853978306, -0.06489249069211184], [24.260960280386392, -0.06176775665836536], [23.435701862795536, -0.05741389853757602], [23.01277483324257, -0.05523896361102415]], [[23.01277483324257, -0.05523896361102415], [22.36145565789883, -0.051953774584321294], [22.0598528643834, -0.05054679785861888], [21.17861922257815, -0.04641577965760771], [21.183235628686088, -0.04653002787070707], [20.704966094105004, -0.04429578929307854], [19.977321338083105, -0.041179754279198615], [19.604288687911822, -0.0396234883863287]], [[19.604288687911822, -0.0396234883863287], [19.028490130799124, -0.03726814960683682], [18.761577888568564, -0.036258999475397], [17.9816680516025, -0.03329780573587837], [17.985593580758255, -0.03337797539652358], [17.56212910959831, -0.03177812766212251], [16.91702309024182, -0.02954411429626302], [16.586022830848613, -0.028428675512454187]], [[16.586022830848613, -0.028428675512454187], [16.073590515619998, -0.0267368135281758], [15.835624402893782, -0.026011543845770275], [15.13991667798966, -0.023884860873557283], [15.143225443695911, -0.02394080727809262], [14.765025568939398, -0.02279333690055976], [14.187500432495193, -0.021188254897808484], [13.890651612259257, -0.02038704213557146]], [[13.890651612259257, -0.02038704213557146], [13.429174211220964, -0.019168525968068745], [13.214215126541948, -0.018645732786658813], [12.584785390576421, -0.01711375900578805], [12.587545126208546, -0.017152489416658333], [12.244447081528941, -0.016327058227835006], [11.71823909583612, -0.01516922769517943], [11.446803840934582, -0.014591171622713818]], [[11.446803840934582, -0.014591171622713818], [11.022067854134404, -0.013708545459199582], [10.823155811303476, -0.013329205715019426], [10.238495025865463, -0.0122174651125817], [10.240767639132274, -0.012243978281372372], [9.920172688478136, -0.011645320116260635], [9.424349401806637, -0.010800788034706018], [9.166673696624551, -0.010378213290736817]], [[9.166673696624551, -0.010378213290736817], [8.75853734499503, -0.009727640494336859], [8.565417572801222, -0.009446623532878846], [7.992442926532645, -0.008619689626602079], [7.994289055889147, -0.008637597478275135], [7.6756698339791045, -0.008190179125475986], [7.173858502111052, -0.0075485856529005305], [6.908393171944192, -0.007223602550862444]], [[6.908393171944192, -0.007223602550862444], [6.473389582685617, -0.006707474245715189], [6.262602563672204, -0.006479858039739805], [5.61946584775536, -0.0057921065243411295], [5.621010310017039, -0.005804393529819846], [5.247894672534584, -0.005417119613662013], [4.626752458367954, -0.004818535972080755], [4.276766216544123, -0.00448987110081555]], [[4.276766216544123, -0.00448987110081555], [4.080376929724552, -0.004306795635516525], [3.980634060121082, -0.004215511250021924], [3.6698977107746797, -0.003928923830593871], [3.6699541904503756, -0.003929296109678315], [3.4839117837453246, -0.0037573002532797083], [3.164648388500825, -0.0034610681046587342], [2.981700041819988, -0.003289594540297232]]], SciMLBase.ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Any}, SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}, SciMLBase.StandardODEProblem}(SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}(GasChromatographySimulator.odesystem_r!, LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, SciMLBase.DEFAULT_OBSERVED, nothing), [0.0, 0.0], (0.0, 11.18), Any[GasChromatographySimulator.Column(11.18, 0.000104, [0.000104], 1.04e-7, [1.04e-7], "FS5ms", "H2"), GasChromatographySimulator.Program{GasChromatographySimulator.var"#gf#5"{Matrix{Float64}}}([0.0, 60.0, 1680.0, 60.0, 360.0, 60.0], [40.0, 40.0, 180.0, 180.0, 300.0, 300.0], [411564.0, 411564.0, 411564.0, 411564.0, 411564.0, 411564.0], [101300.0, 101300.0, 101300.0, 101300.0, 101300.0, 101300.0], GasChromatographySimulator.var"#gf#5"{Matrix{Float64}}([0.0 0.0 11.18 0.0; 0.0 0.0 11.18 0.0; … ; 0.0 0.0 11.18 0.0; 0.0 0.0 11.18 0.0]), [0.0 0.0 11.18 0.0; 0.0 0.0 11.18 0.0; … ; 0.0 0.0 11.18 0.0; 0.0 0.0 11.18 0.0], 11181×6 extrapolate(interpolate((0.0:0.001:11.18,::Vector{Float64}), ::Matrix{Float64}, Gridded(Linear())), Flat()) with element type Float64:
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
⋮ ⋮
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15, 6-element extrapolate(interpolate((::Vector{Float64},), ::Vector{Float64}, Gridded(Linear())), Flat()) with element type Float64:
411564.0
411564.0
411564.0
411564.0
411564.0
411564.0, 6-element extrapolate(interpolate((::Vector{Float64},), ::Vector{Float64}, Gridded(Linear())), Flat()) with element type Float64:
101300.0
101300.0
101300.0
101300.0
101300.0
101300.0), GasChromatographySimulator.Substance("C28", "630-2-4", 607.3399999999999, 41.82, 183.91, 0.001, "Leppert2020b, alkane", 6.915867131183108e-5, 0.0, 0.0), GasChromatographySimulator.Options(OwrenZen5(), 1.0e-6, 0.001, "inlet", true, true, "Blumberg", "Pressure")], Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}(), SciMLBase.StandardODEProblem()), OwrenZen5(), OrdinaryDiffEq.InterpolationData{SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}}(SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}(GasChromatographySimulator.odesystem_r!, LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, SciMLBase.DEFAULT_OBSERVED, nothing), [[0.0, 0.0], [39.20413519851618, 5.083069919161066e6], [52.16962487312537, 6.764129585437992e6], [59.38992783597706, 7.7002886033623535e6], [59.95140480822078, 7.773087727372242e6], [60.21530872403701, 7.7592556250414895e6], [60.32940843271148, 7.751273457312373e6], [61.461307866459315, 7.672230157916223e6], [67.08001315826495, 7.284347772060995e6], [75.98752956664626, 6.689045662846668e6] … [2014.725458899351, 0.235417096160731], [2026.1757000793782, 0.2053636851388537], [2037.864395079801, 0.17960653077269012], [2049.7519643566266, 0.15747489417922195], [2061.7690608944586, 0.13841560813613907], [2073.7948609758587, 0.1219757471534179], [2085.613270134666, 0.10779902580116515], [2096.8125522527052, 0.095656900069775], [2106.4980220259276, 0.08561881915196241], [2109.0604852940355, 0.08287441784301582]], [0.0, 6.443422561125131e-8, 8.574374523535688e-8, 9.761072377974756e-8, 9.853354311556449e-8, 9.896777274301707e-8, 9.915595908683831e-8, 1.0103782252505072e-7, 1.1079431489655656e-7, 1.2777059469110027e-7 … 2.786113903959678, 3.246921178625437, 3.797694721296355, 4.45738835166793, 5.249393581975161, 6.202838963071345, 7.354570342388651, 8.75314311337818, 10.47922075002294, 11.18], [[[0.0, 0.0]], [[6.084365083877919e8, 7.888773217496178e13], [6.08436508113276e8, 7.888773210377628e13], [6.084365079760114e8, 7.888773206818177e13], [6.084365075642439e8, 7.888773196140512e13], [6.084365075642439e8, 7.888773196140512e13], [6.084365073289444e8, 7.888773190038894e13], [6.08436506946583e8, 7.888773180123766e13], [6.084365067406893e8, 7.888773174784673e13]], [[6.084365067406893e8, 7.888773174784673e13], [6.084365066499088e8, 7.888773172430619e13], [6.08436506604515e8, 7.8887731712535e13], [6.084365064683342e8, 7.888773167722156e13], [6.084365064683342e8, 7.888773167722156e13], [6.084365063905168e8, 7.888773165704248e13], [6.08436506264063e8, 7.888773162425139e13], [6.084365061959726e8, 7.888773160659466e13]], [[6.084365061959726e8, 7.888773160659466e13], [6.084365061454079e8, 7.888773159348258e13], [6.084365061201353e8, 7.888773158692908e13], [6.084365060442915e8, 7.888773156726178e13], [6.084365060442915e8, 7.888773156726178e13], [6.084365060009626e8, 7.888773155602605e13], [6.084365059305423e8, 7.888773153776516e13], [6.084365058926235e8, 7.888773152793233e13]], [[6.084365058926235e8, 7.888773152793233e13], [6.084365058886923e8, 7.888773152691288e13], [6.084365058867263e8, 7.888773152640308e13], [6.084365058808289e8, 7.88877315248738e13], [6.084365058808289e8, 7.88877315248738e13], [6.084365058774589e8, 7.888773152399995e13], [6.084365058719828e8, 7.88877315225799e13], [6.084365058690342e8, 7.888773152181528e13]], [[6.084365058690342e8, 7.888773152181528e13], [6.084365058671842e8, 7.888773152133558e13], [6.083001419938538e8, -4.271876228911408e13], [6.077848923924593e8, -4.205646667754441e13], [6.077841480257921e8, -4.4943532764422375e13], [6.074908221167163e8, -4.208114955506997e13], [6.070132558603408e8, -4.253183549340822e13], [6.067567008590299e8, -4.245410769626267e13]], [[6.067567008590299e8, -4.245410769626267e13], [6.066084621389997e8, -4.244149714301311e13], [6.065343977900921e8, -4.243519616776061e13], [6.063122616958413e8, -4.241629165893908e13], [6.063122618153096e8, -4.241629167991672e13], [6.061854017088019e8, -4.2405492243438266e13], [6.059793703354111e8, -4.238794810236442e13], [6.058684898324304e8, -4.237850377217961e13]], [[6.058684898324304e8, -4.237850377217961e13], [6.043922544454877e8, -4.225254007622028e13], [6.036595914055448e8, -4.218999036358694e13], [6.014671198320237e8, -4.2002187961540125e13], [6.014672382295414e8, -4.2002208921101984e13], [6.002216114492416e8, -4.189520042228355e13], [5.982089266013051e8, -4.172185981327695e13], [5.971308789564788e8, -4.162878331716158e13]], [[5.971308789564788e8, -4.162878331716158e13], [5.897410074296151e8, -4.098500297557019e13], [5.86183742667963e8, -4.067495653514466e13], [5.75636757398756e8, -3.9741403128420984e13], [5.75652071051652e8, -3.974430572659194e13], [5.697846124546565e8, -3.9218024982073266e13], [5.60533703096582e8, -3.838342663749766e13], [5.556766383305717e8, -3.794155067317474e13]], [[5.556766383305717e8, -3.794155067317474e13], [5.44627004756397e8, -3.692313365805294e13], [5.394311293582743e8, -3.644852428803698e13], [5.2411659868315864e8, -3.5019887104297266e13], [5.241757135669312e8, -3.5033764380421617e13], [5.15765818440455e8, -3.4235364274280883e13], [5.027742548887171e8, -3.300895662617317e13], [4.9604426569145614e8, -3.2369465922261188e13]] … [[31.279971853051652, -0.10760435560541355], [30.438696824676523, -0.10117794754234932], [30.049456599271632, -0.09842736452780992], [28.911572569535842, -0.09034515750103293], [28.917820994637744, -0.09057496715406797], [28.30016766931603, -0.08619783362171216], [27.361344910565105, -0.08010356689647279], [26.88024821790748, -0.07705886278954666]], [[26.88024821790748, -0.07705886278954666], [26.140755634533246, -0.07246849544158035], [25.79851999311055, -0.07050319617420023], [24.798364636731407, -0.06473027249170209], [24.803752853978306, -0.06489249069211184], [24.260960280386392, -0.06176775665836536], [23.435701862795536, -0.05741389853757602], [23.01277483324257, -0.05523896361102415]], [[23.01277483324257, -0.05523896361102415], [22.36145565789883, -0.051953774584321294], [22.0598528643834, -0.05054679785861888], [21.17861922257815, -0.04641577965760771], [21.183235628686088, -0.04653002787070707], [20.704966094105004, -0.04429578929307854], [19.977321338083105, -0.041179754279198615], [19.604288687911822, -0.0396234883863287]], [[19.604288687911822, -0.0396234883863287], [19.028490130799124, -0.03726814960683682], [18.761577888568564, -0.036258999475397], [17.9816680516025, -0.03329780573587837], [17.985593580758255, -0.03337797539652358], [17.56212910959831, -0.03177812766212251], [16.91702309024182, -0.02954411429626302], [16.586022830848613, -0.028428675512454187]], [[16.586022830848613, -0.028428675512454187], [16.073590515619998, -0.0267368135281758], [15.835624402893782, -0.026011543845770275], [15.13991667798966, -0.023884860873557283], [15.143225443695911, -0.02394080727809262], [14.765025568939398, -0.02279333690055976], [14.187500432495193, -0.021188254897808484], [13.890651612259257, -0.02038704213557146]], [[13.890651612259257, -0.02038704213557146], [13.429174211220964, -0.019168525968068745], [13.214215126541948, -0.018645732786658813], [12.584785390576421, -0.01711375900578805], [12.587545126208546, -0.017152489416658333], [12.244447081528941, -0.016327058227835006], [11.71823909583612, -0.01516922769517943], [11.446803840934582, -0.014591171622713818]], [[11.446803840934582, -0.014591171622713818], [11.022067854134404, -0.013708545459199582], [10.823155811303476, -0.013329205715019426], [10.238495025865463, -0.0122174651125817], [10.240767639132274, -0.012243978281372372], [9.920172688478136, -0.011645320116260635], [9.424349401806637, -0.010800788034706018], [9.166673696624551, -0.010378213290736817]], [[9.166673696624551, -0.010378213290736817], [8.75853734499503, -0.009727640494336859], [8.565417572801222, -0.009446623532878846], [7.992442926532645, -0.008619689626602079], [7.994289055889147, -0.008637597478275135], [7.6756698339791045, -0.008190179125475986], [7.173858502111052, -0.0075485856529005305], [6.908393171944192, -0.007223602550862444]], [[6.908393171944192, -0.007223602550862444], [6.473389582685617, -0.006707474245715189], [6.262602563672204, -0.006479858039739805], [5.61946584775536, -0.0057921065243411295], [5.621010310017039, -0.005804393529819846], [5.247894672534584, -0.005417119613662013], [4.626752458367954, -0.004818535972080755], [4.276766216544123, -0.00448987110081555]], [[4.276766216544123, -0.00448987110081555], [4.080376929724552, -0.004306795635516525], [3.980634060121082, -0.004215511250021924], [3.6698977107746797, -0.003928923830593871], [3.6699541904503756, -0.003929296109678315], [3.4839117837453246, -0.0037573002532797083], [3.164648388500825, -0.0034610681046587342], [2.981700041819988, -0.003289594540297232]]], true, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}([2109.0604852940355, 0.08287441784301582], [2106.4980220259276, 0.08561881915196241], [4.276766216544123, -0.00448987110081555], [4.080376929724552, -0.004306795635516525], [3.980634060121082, -0.004215511250021924], [3.6698977107746797, -0.003928923830593871], [3.6699541904503756, -0.003929296109678315], [3.4839117837453246, -0.0037573002532797083], [3.164648388500825, -0.0034610681046587342], [2.981700041819988, -0.003289594540297232], [0.00023427485324104504, -2.962889877031132e-7], [2108.791135217852, 0.08317037263407433], [0.00011108014388133569, -0.0034206075608501363], OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}(0.16666666666666666, 0.0625, 0.1875, 0.25, -0.75, -0.75, 3.75, -3.0, 0.5, 0.26895043731778423, -0.7084548104956269, 0.8658892128279884, 0.15462307371928363, 0.06184922948771345, -0.02947695035460993, 0.18500664893617022, 0.4802345261121857, -0.5337849069148937, -0.013090093085106383, 0.7861107753062541, 0.08783068783068783, 0.3006060606060606, 0.22777777777777777, 0.027777777777777776, 0.06218596218596219, 0.2938217338217338, 0.16666666666666666, 0.25, 0.5, 0.5, 0.6428571428571429, 0.875, -0.19894179894179895, 0.9115151515151515, -1.9777777777777779, -0.1111111111111111, 1.67013727013727, -0.2938217338217338, 1.892063492063492, -6.067155067155067, 7.282458282458283, -4.0195360195360195, -7.214545454545455, 20.676923076923078, -20.31142191142191, 7.14965034965035, 7.866666666666666, -18.78205128205128, 13.508547008547009, -2.3653846153846154, 2.0, -5.294871794871795, 4.534188034188034, -1.2115384615384615, -1.4924630924630924, 1.5785667324128863, 1.1958838881915805, -1.219801565955412, -7.051721611721612, 16.273203719357564, -11.978886071193763, 3.0512256973795435, 4.0, -8.384615384615385, 5.769230769230769, -1.3846153846153846))), true, 0, DiffEqBase.DEStats
Number of function 1 evaluations: 1305
Number of function 2 evaluations: 0
Number of W matrix evaluations: 0
Number of linear solves: 0
Number of Jacobians created: 0
Number of nonlinear solver iterations: 0
Number of nonlinear solver convergence failures: 0
Number of rootfind condition calls: 0
Number of accepted steps: 135
Number of rejected steps: 51, :Success), SciMLBase.ODESolution{Float64, 2, Vector{Vector{Float64}}, Nothing, Nothing, Vector{Float64}, Vector{Vector{Vector{Float64}}}, SciMLBase.ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Any}, SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}, SciMLBase.StandardODEProblem}, OwrenZen5, OrdinaryDiffEq.InterpolationData{SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}}, DiffEqBase.DEStats}([[0.0, 0.0], [58.13031728368686, 1.656211191360359e7], [59.6420957567333, 1.6992838002936915e7], [59.98244110122867, 1.7089806984746497e7], [60.243288308329696, 1.705712421212823e7], [60.35585017824354, 1.7038575189651486e7], [61.47239782722523, 1.6855090786812425e7], [67.26545747916583, 1.5919308746876398e7], [76.49447071967418, 1.4492900597373942e7], [86.76349470056364, 1.3011267092910632e7] … [2031.4160159693383, 0.2439267569481333], [2043.005791662981, 0.2130980645738528], [2054.8426059680246, 0.18657992355449246], [2066.8940251586837, 0.1637211605214768], [2079.1033368630856, 0.14397878294428101], [2091.3725426722385, 0.12690115645339034], [2103.529311080163, 0.1121208130714595], [2115.2555137183904, 0.09936855734824983], [2125.9039918703033, 0.08856043296492415], [2132.2412061397063, 0.08206054532704399]], nothing, nothing, [0.0, 4.422169617916659e-8, 4.5371757137250224e-8, 4.563066933897809e-8, 4.582940364326677e-8, 4.591537142236713e-8, 4.67750492133707e-8, 5.144346817780464e-8, 5.965190334035167e-8, 7.002222487468781e-8 … 2.5159693500268645, 2.9475796680712993, 3.4637440829679886, 4.082181550138978, 4.824697746284909, 5.7183340494297425, 6.797038378120862, 8.104556769663882, 9.703424235426914, 11.18], [[[0.0, 0.0]], [[1.314520300220256e9, 3.74524574481993e14], [1.3145202998132145e9, 3.7452457425004975e14], [1.3145202996096942e9, 3.745245741340784e14], [1.3145202989991324e9, 3.7452457378616375e14], [1.3145202989991324e9, 3.7452457378616375e14], [1.3145202986502397e9, 3.745245735873552e14], [1.3145202980832894e9, 3.745245732642917e14], [1.3145202977780082e9, 3.745245730903342e14]], [[1.3145202977780082e9, 3.745245730903342e14], [1.3145202977674224e9, 3.745245730843022e14], [1.3145202977621293e9, 3.745245730812861e14], [1.3145202977462509e9, 3.7452457307223806e14], [1.3145202977462509e9, 3.7452457307223806e14], [1.3145202977371776e9, 3.745245730670679e14], [1.3145202977224329e9, 3.745245730586659e14], [1.3145202977144935e9, 3.745245730541418e14]], [[1.3145202977144935e9, 3.745245730541418e14], [1.3145202977121103e9, 3.745245730527838e14], [1.3145202977109187e9, 3.745245730521048e14], [1.3145202977073438e9, 3.745245730500678e14], [1.3145202977073438e9, 3.745245730500678e14], [1.3145202977053013e9, 3.7452457304890375e14], [1.3145202977019818e9, 3.745245730470123e14], [1.3145202977001944e9, 3.7452457304599375e14]], [[1.3145202977001944e9, 3.7452457304599375e14], [1.314071006401997e9, -2.171270942670215e14], [1.313694951470765e9, -2.1662059329398756e14], [1.3125679839835455e9, -2.1713655959207912e14], [1.3125669426667204e9, -2.130616822573862e14], [1.3119248003549855e9, -2.1707203280369975e14], [1.3108806607531836e9, -2.1562666962444862e14], [1.310319426253952e9, -2.1598098089614406e14]], [[1.310319426253952e9, -2.1598098089614406e14], [1.3099958373137248e9, -2.159096507645227e14], [1.3098341641796677e9, -2.158740153510638e14], [1.3093492702590148e9, -2.1576710841348488e14], [1.309349270525452e9, -2.1576710856108694e14], [1.3090723532136679e9, -2.1570604508661244e14], [1.3086226190061557e9, -2.1560685805727712e14], [1.3083805855455394e9, -2.1555347058517094e14]], [[1.3083805855455394e9, -2.1555347058517094e14], [1.3051582570740726e9, -2.148417200719383e14], [1.303559122995885e9, -2.14488808258581e14], [1.298773873229636e9, -2.134299809830703e14], [1.2987741372743337e9, -2.13430128069972e14], [1.2960556084224615e9, -2.1282759342058944e14], [1.2916632609327903e9, -2.1185283360318812e14], [1.2893107255050766e9, -2.113300402117178e14]], [[1.2893107255050766e9, -2.113300402117178e14], [1.2724260120193431e9, -2.0755098640761888e14], [1.2643162238883984e9, -2.057476192140288e14], [1.2402855511071842e9, -2.0033199402426144e14], [1.2403247339583316e9, -2.003547951457943e14], [1.2269739332400358e9, -1.9731697554211075e14], [1.205963553004061e9, -1.92539460611031e14], [1.194947028603575e9, -1.900230692510838e14]], [[1.194947028603575e9, -1.900230692510838e14], [1.1696509566215785e9, -1.841880081979853e14], [1.1578035646352782e9, -1.8150488262069456e14], [1.1229150675409477e9, -1.734483048672564e14], [1.1230684331982899e9, -1.735500354635428e14], [1.1039463013264518e9, -1.6906634363550122e14], [1.0745142764137151e9, -1.6227552028143662e14], [1.0593001131263226e9, -1.5875595392463338e14]], [[1.0593001131263226e9, -1.5875595392463338e14], [1.0343681102159499e9, -1.529511453508834e14], [1.0227779855712384e9, -1.5033069162698828e14], [9.887022795117882e8, -1.4247752883287475e14], [9.888890867615842e8, -1.426154418474664e14], [9.70275519451986e8, -1.382601417490001e14], [9.418247833075871e8, -1.318007282801289e14], [9.271746148068929e8, -1.28478165438518e14]] … [[33.84182906977226, -0.11725408653834064], [32.92480507527683, -0.11032038839043752], [32.501126313092584, -0.10735381727927713], [31.262763701771963, -0.09862553283311755], [31.26986961671606, -0.0988797934093655], [30.598007274186816, -0.09414426118312691], [29.578165910094434, -0.08755636855650833], [29.055902884181567, -0.08426215204853403]], [[29.055902884181567, -0.08426215204853403], [28.2528803558647, -0.07928849261659691], [27.881789610543656, -0.07716000272734663], [26.797506538149406, -0.07089945041457889], [26.803618204699774, -0.07107987379892712], [26.21548445867367, -0.06768505743661568], [25.32254822686208, -0.06295911466617268], [24.86527094489386, -0.060596277824597145]], [[24.86527094489386, -0.060596277824597145], [24.161021436285285, -0.057023015173429475], [23.83541140399843, -0.05549340168142328], [22.88426168530474, -0.05099631980751197], [22.889485317602524, -0.05112406208516391], [22.373594241621834, -0.04868738451575261], [21.589906807476535, -0.04529242051743231], [21.188479993807075, -0.0435954324752128]], [[21.188479993807075, -0.0435954324752128], [20.569033807296623, -0.041024727358645686], [20.282371431548054, -0.03992391580000419], [19.44505519450186, -0.036689425168928876], [19.449487961953015, -0.03677955302628418], [18.9952213545422, -0.03502881208327729], [18.304399272047593, -0.03258692521803504], [17.950314352615628, -0.031366731349866575]], [[17.950314352615628, -0.031366731349866575], [17.402551319743672, -0.029514827364288666], [17.148673079839337, -0.028721480809960967], [16.406896704772127, -0.026392101900126013], [16.41062737553361, -0.026455365424807736], [16.007854374805564, -0.025196197682521713], [15.39414439930572, -0.0234373831909453], [15.079158479682718, -0.022558830129379124]], [[15.079158479682718, -0.022558830129379124], [14.590190969667498, -0.021222442475425003], [14.362986232721948, -0.020649583949288716], [13.698445063802561, -0.018968883579162488], [13.701554474859181, -0.01901296676071643], [13.340005980504456, -0.018105827249285385], [12.787190597660231, -0.01683592563730383], [12.502691811153756, -0.016201696628230785]], [[12.502691811153756, -0.016201696628230785], [12.05872263834656, -0.015233943160719217], [11.851530863606815, -0.014818618131875292], [11.24391018664567, -0.013600598993315394], [11.24647164216613, -0.013631006485595273], [10.914461841912402, -0.01297441133844889], [10.403533175374875, -0.012051488256548868], [10.139141738191382, -0.011590122146801567]], [[10.139141738191382, -0.011590122146801567], [9.722769610869248, -0.010882121953939181], [9.526915495345245, -0.010577347471601968], [8.948843839298124, -0.009682048772760656], [8.950924942513193, -0.009702749150844068], [8.63196677892979, -0.009219466848670617], [8.134663090491973, -0.008533205140411004], [7.874155251769764, -0.008188042172474755]], [[7.874155251769764, -0.008188042172474755], [7.4553710572742, -0.007649567184376324], [7.255108451287367, -0.007415178823263265], [6.65377940141269, -0.006718040134113153], [6.655463318205859, -0.006732033927522974], [6.315045614216252, -0.006349170491677573], [5.766512601105983, -0.005784470179626923], [5.469065385172277, -0.005490123198537752]], [[5.469065385172277, -0.005490123198537752], [5.096135969818015, -0.005128934270496601], [4.909529170237502, -0.004958815629319687], [4.324390510852745, -0.004423768218253702], [4.325042594086205, -0.004428129483795359], [3.9709040710805223, -0.004106972290325313], [3.3475086820919877, -0.0035501584704937493], [2.972716096968475, -0.003210094932516971]]], SciMLBase.ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Any}, SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}, SciMLBase.StandardODEProblem}(SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}(GasChromatographySimulator.odesystem_r!, LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, SciMLBase.DEFAULT_OBSERVED, nothing), [0.0, 0.0], (0.0, 11.18), Any[GasChromatographySimulator.Column(11.18, 0.000104, [0.000104], 1.04e-7, [1.04e-7], "FS5ms", "H2"), GasChromatographySimulator.Program{GasChromatographySimulator.var"#gf#5"{Matrix{Float64}}}([0.0, 60.0, 1680.0, 60.0, 360.0, 60.0], [40.0, 40.0, 180.0, 180.0, 300.0, 300.0], [411564.0, 411564.0, 411564.0, 411564.0, 411564.0, 411564.0], [101300.0, 101300.0, 101300.0, 101300.0, 101300.0, 101300.0], GasChromatographySimulator.var"#gf#5"{Matrix{Float64}}([0.0 0.0 11.18 0.0; 0.0 0.0 11.18 0.0; … ; 0.0 0.0 11.18 0.0; 0.0 0.0 11.18 0.0]), [0.0 0.0 11.18 0.0; 0.0 0.0 11.18 0.0; … ; 0.0 0.0 11.18 0.0; 0.0 0.0 11.18 0.0], 11181×6 extrapolate(interpolate((0.0:0.001:11.18,::Vector{Float64}), ::Matrix{Float64}, Gridded(Linear())), Flat()) with element type Float64:
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
⋮ ⋮
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15, 6-element extrapolate(interpolate((::Vector{Float64},), ::Vector{Float64}, Gridded(Linear())), Flat()) with element type Float64:
411564.0
411564.0
411564.0
411564.0
411564.0
411564.0, 6-element extrapolate(interpolate((::Vector{Float64},), ::Vector{Float64}, Gridded(Linear())), Flat()) with element type Float64:
101300.0
101300.0
101300.0
101300.0
101300.0
101300.0), GasChromatographySimulator.Substance("C29", "630-3-5", 614.55, 41.67, 183.07, 0.001, "Leppert2020b, alkane", 6.784748059430345e-5, 0.0, 0.0), GasChromatographySimulator.Options(OwrenZen5(), 1.0e-6, 0.001, "inlet", true, true, "Blumberg", "Pressure")], Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}(), SciMLBase.StandardODEProblem()), OwrenZen5(), OrdinaryDiffEq.InterpolationData{SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}}(SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}(GasChromatographySimulator.odesystem_r!, LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, SciMLBase.DEFAULT_OBSERVED, nothing), [[0.0, 0.0], [58.13031728368686, 1.656211191360359e7], [59.6420957567333, 1.6992838002936915e7], [59.98244110122867, 1.7089806984746497e7], [60.243288308329696, 1.705712421212823e7], [60.35585017824354, 1.7038575189651486e7], [61.47239782722523, 1.6855090786812425e7], [67.26545747916583, 1.5919308746876398e7], [76.49447071967418, 1.4492900597373942e7], [86.76349470056364, 1.3011267092910632e7] … [2031.4160159693383, 0.2439267569481333], [2043.005791662981, 0.2130980645738528], [2054.8426059680246, 0.18657992355449246], [2066.8940251586837, 0.1637211605214768], [2079.1033368630856, 0.14397878294428101], [2091.3725426722385, 0.12690115645339034], [2103.529311080163, 0.1121208130714595], [2115.2555137183904, 0.09936855734824983], [2125.9039918703033, 0.08856043296492415], [2132.2412061397063, 0.08206054532704399]], [0.0, 4.422169617916659e-8, 4.5371757137250224e-8, 4.563066933897809e-8, 4.582940364326677e-8, 4.591537142236713e-8, 4.67750492133707e-8, 5.144346817780464e-8, 5.965190334035167e-8, 7.002222487468781e-8 … 2.5159693500268645, 2.9475796680712993, 3.4637440829679886, 4.082181550138978, 4.824697746284909, 5.7183340494297425, 6.797038378120862, 8.104556769663882, 9.703424235426914, 11.18], [[[0.0, 0.0]], [[1.314520300220256e9, 3.74524574481993e14], [1.3145202998132145e9, 3.7452457425004975e14], [1.3145202996096942e9, 3.745245741340784e14], [1.3145202989991324e9, 3.7452457378616375e14], [1.3145202989991324e9, 3.7452457378616375e14], [1.3145202986502397e9, 3.745245735873552e14], [1.3145202980832894e9, 3.745245732642917e14], [1.3145202977780082e9, 3.745245730903342e14]], [[1.3145202977780082e9, 3.745245730903342e14], [1.3145202977674224e9, 3.745245730843022e14], [1.3145202977621293e9, 3.745245730812861e14], [1.3145202977462509e9, 3.7452457307223806e14], [1.3145202977462509e9, 3.7452457307223806e14], [1.3145202977371776e9, 3.745245730670679e14], [1.3145202977224329e9, 3.745245730586659e14], [1.3145202977144935e9, 3.745245730541418e14]], [[1.3145202977144935e9, 3.745245730541418e14], [1.3145202977121103e9, 3.745245730527838e14], [1.3145202977109187e9, 3.745245730521048e14], [1.3145202977073438e9, 3.745245730500678e14], [1.3145202977073438e9, 3.745245730500678e14], [1.3145202977053013e9, 3.7452457304890375e14], [1.3145202977019818e9, 3.745245730470123e14], [1.3145202977001944e9, 3.7452457304599375e14]], [[1.3145202977001944e9, 3.7452457304599375e14], [1.314071006401997e9, -2.171270942670215e14], [1.313694951470765e9, -2.1662059329398756e14], [1.3125679839835455e9, -2.1713655959207912e14], [1.3125669426667204e9, -2.130616822573862e14], [1.3119248003549855e9, -2.1707203280369975e14], [1.3108806607531836e9, -2.1562666962444862e14], [1.310319426253952e9, -2.1598098089614406e14]], [[1.310319426253952e9, -2.1598098089614406e14], [1.3099958373137248e9, -2.159096507645227e14], [1.3098341641796677e9, -2.158740153510638e14], [1.3093492702590148e9, -2.1576710841348488e14], [1.309349270525452e9, -2.1576710856108694e14], [1.3090723532136679e9, -2.1570604508661244e14], [1.3086226190061557e9, -2.1560685805727712e14], [1.3083805855455394e9, -2.1555347058517094e14]], [[1.3083805855455394e9, -2.1555347058517094e14], [1.3051582570740726e9, -2.148417200719383e14], [1.303559122995885e9, -2.14488808258581e14], [1.298773873229636e9, -2.134299809830703e14], [1.2987741372743337e9, -2.13430128069972e14], [1.2960556084224615e9, -2.1282759342058944e14], [1.2916632609327903e9, -2.1185283360318812e14], [1.2893107255050766e9, -2.113300402117178e14]], [[1.2893107255050766e9, -2.113300402117178e14], [1.2724260120193431e9, -2.0755098640761888e14], [1.2643162238883984e9, -2.057476192140288e14], [1.2402855511071842e9, -2.0033199402426144e14], [1.2403247339583316e9, -2.003547951457943e14], [1.2269739332400358e9, -1.9731697554211075e14], [1.205963553004061e9, -1.92539460611031e14], [1.194947028603575e9, -1.900230692510838e14]], [[1.194947028603575e9, -1.900230692510838e14], [1.1696509566215785e9, -1.841880081979853e14], [1.1578035646352782e9, -1.8150488262069456e14], [1.1229150675409477e9, -1.734483048672564e14], [1.1230684331982899e9, -1.735500354635428e14], [1.1039463013264518e9, -1.6906634363550122e14], [1.0745142764137151e9, -1.6227552028143662e14], [1.0593001131263226e9, -1.5875595392463338e14]], [[1.0593001131263226e9, -1.5875595392463338e14], [1.0343681102159499e9, -1.529511453508834e14], [1.0227779855712384e9, -1.5033069162698828e14], [9.887022795117882e8, -1.4247752883287475e14], [9.888890867615842e8, -1.426154418474664e14], [9.70275519451986e8, -1.382601417490001e14], [9.418247833075871e8, -1.318007282801289e14], [9.271746148068929e8, -1.28478165438518e14]] … [[33.84182906977226, -0.11725408653834064], [32.92480507527683, -0.11032038839043752], [32.501126313092584, -0.10735381727927713], [31.262763701771963, -0.09862553283311755], [31.26986961671606, -0.0988797934093655], [30.598007274186816, -0.09414426118312691], [29.578165910094434, -0.08755636855650833], [29.055902884181567, -0.08426215204853403]], [[29.055902884181567, -0.08426215204853403], [28.2528803558647, -0.07928849261659691], [27.881789610543656, -0.07716000272734663], [26.797506538149406, -0.07089945041457889], [26.803618204699774, -0.07107987379892712], [26.21548445867367, -0.06768505743661568], [25.32254822686208, -0.06295911466617268], [24.86527094489386, -0.060596277824597145]], [[24.86527094489386, -0.060596277824597145], [24.161021436285285, -0.057023015173429475], [23.83541140399843, -0.05549340168142328], [22.88426168530474, -0.05099631980751197], [22.889485317602524, -0.05112406208516391], [22.373594241621834, -0.04868738451575261], [21.589906807476535, -0.04529242051743231], [21.188479993807075, -0.0435954324752128]], [[21.188479993807075, -0.0435954324752128], [20.569033807296623, -0.041024727358645686], [20.282371431548054, -0.03992391580000419], [19.44505519450186, -0.036689425168928876], [19.449487961953015, -0.03677955302628418], [18.9952213545422, -0.03502881208327729], [18.304399272047593, -0.03258692521803504], [17.950314352615628, -0.031366731349866575]], [[17.950314352615628, -0.031366731349866575], [17.402551319743672, -0.029514827364288666], [17.148673079839337, -0.028721480809960967], [16.406896704772127, -0.026392101900126013], [16.41062737553361, -0.026455365424807736], [16.007854374805564, -0.025196197682521713], [15.39414439930572, -0.0234373831909453], [15.079158479682718, -0.022558830129379124]], [[15.079158479682718, -0.022558830129379124], [14.590190969667498, -0.021222442475425003], [14.362986232721948, -0.020649583949288716], [13.698445063802561, -0.018968883579162488], [13.701554474859181, -0.01901296676071643], [13.340005980504456, -0.018105827249285385], [12.787190597660231, -0.01683592563730383], [12.502691811153756, -0.016201696628230785]], [[12.502691811153756, -0.016201696628230785], [12.05872263834656, -0.015233943160719217], [11.851530863606815, -0.014818618131875292], [11.24391018664567, -0.013600598993315394], [11.24647164216613, -0.013631006485595273], [10.914461841912402, -0.01297441133844889], [10.403533175374875, -0.012051488256548868], [10.139141738191382, -0.011590122146801567]], [[10.139141738191382, -0.011590122146801567], [9.722769610869248, -0.010882121953939181], [9.526915495345245, -0.010577347471601968], [8.948843839298124, -0.009682048772760656], [8.950924942513193, -0.009702749150844068], [8.63196677892979, -0.009219466848670617], [8.134663090491973, -0.008533205140411004], [7.874155251769764, -0.008188042172474755]], [[7.874155251769764, -0.008188042172474755], [7.4553710572742, -0.007649567184376324], [7.255108451287367, -0.007415178823263265], [6.65377940141269, -0.006718040134113153], [6.655463318205859, -0.006732033927522974], [6.315045614216252, -0.006349170491677573], [5.766512601105983, -0.005784470179626923], [5.469065385172277, -0.005490123198537752]], [[5.469065385172277, -0.005490123198537752], [5.096135969818015, -0.005128934270496601], [4.909529170237502, -0.004958815629319687], [4.324390510852745, -0.004423768218253702], [4.325042594086205, -0.004428129483795359], [3.9709040710805223, -0.004106972290325313], [3.3475086820919877, -0.0035501584704937493], [2.972716096968475, -0.003210094932516971]]], true, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}([2132.2412061397063, 0.08206054532704399], [2125.9039918703033, 0.08856043296492415], [5.469065385172277, -0.005490123198537752], [5.096135969818015, -0.005128934270496601], [4.909529170237502, -0.004958815629319687], [4.324390510852745, -0.004423768218253702], [4.325042594086205, -0.004428129483795359], [3.9709040710805223, -0.004106972290325313], [3.3475086820919877, -0.0035501584704937493], [2.972716096968475, -0.003210094932516971], [0.0032851691683071266, -3.941723915554166e-6], [2131.6567221386663, 0.08268708831146762], [0.0015407110687742757, -0.04401188990564527], OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}(0.16666666666666666, 0.0625, 0.1875, 0.25, -0.75, -0.75, 3.75, -3.0, 0.5, 0.26895043731778423, -0.7084548104956269, 0.8658892128279884, 0.15462307371928363, 0.06184922948771345, -0.02947695035460993, 0.18500664893617022, 0.4802345261121857, -0.5337849069148937, -0.013090093085106383, 0.7861107753062541, 0.08783068783068783, 0.3006060606060606, 0.22777777777777777, 0.027777777777777776, 0.06218596218596219, 0.2938217338217338, 0.16666666666666666, 0.25, 0.5, 0.5, 0.6428571428571429, 0.875, -0.19894179894179895, 0.9115151515151515, -1.9777777777777779, -0.1111111111111111, 1.67013727013727, -0.2938217338217338, 1.892063492063492, -6.067155067155067, 7.282458282458283, -4.0195360195360195, -7.214545454545455, 20.676923076923078, -20.31142191142191, 7.14965034965035, 7.866666666666666, -18.78205128205128, 13.508547008547009, -2.3653846153846154, 2.0, -5.294871794871795, 4.534188034188034, -1.2115384615384615, -1.4924630924630924, 1.5785667324128863, 1.1958838881915805, -1.219801565955412, -7.051721611721612, 16.273203719357564, -11.978886071193763, 3.0512256973795435, 4.0, -8.384615384615385, 5.769230769230769, -1.3846153846153846))), true, 0, DiffEqBase.DEStats
Number of function 1 evaluations: 1291
Number of function 2 evaluations: 0
Number of W matrix evaluations: 0
Number of linear solves: 0
Number of Jacobians created: 0
Number of nonlinear solver iterations: 0
Number of nonlinear solver convergence failures: 0
Number of rootfind condition calls: 0
Number of accepted steps: 137
Number of rejected steps: 47, :Success), SciMLBase.ODESolution{Float64, 2, Vector{Vector{Float64}}, Nothing, Nothing, Vector{Float64}, Vector{Vector{Vector{Float64}}}, SciMLBase.ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Any}, SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}, SciMLBase.StandardODEProblem}, OwrenZen5, OrdinaryDiffEq.InterpolationData{SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}}, DiffEqBase.DEStats}([[0.0, 0.0], [34.20269595878165, 2.160614339472559e7], [62.28848440244334, 3.934818258725053e7], [93.1382819637024, 2.7440883943874996e7], [103.58655257395502, 2.4222310687175818e7], [120.6150805728403, 1.973412751111418e7], [133.06373237677175, 1.6976403566312227e7], [147.2419709649057, 1.4297831015999509e7], [160.18216210683906, 1.2224338998228556e7], [173.5741370246344, 1.039752055365651e7] … [2054.8816743470143, 0.23245299453556106], [2066.7604987023255, 0.20356310595019586], [2078.8742246414495, 0.17860768839437596], [2091.1844605584, 0.15701638440217955], [2103.624987196683, 0.1383082533052479], [2116.081433830837, 0.122080266532152], [2128.350844560069, 0.10800610223274533], [2140.0509580856924, 0.09586222499408581], [2150.372168427802, 0.08566019544291648], [2154.3373913260766, 0.08161645769469376]], nothing, nothing, [0.0, 1.1930355918824205e-8, 2.1727053025696095e-8, 3.5464994054642934e-8, 4.15454947089049e-8, 5.342386350257024e-8, 6.392860839979808e-8, 7.813178793216227e-8, 9.353821767514382e-8, 1.123717922379736e-7 … 2.543775552601881, 2.998100019796116, 3.542231941746685, 4.195076623367371, 4.979939718874574, 5.925799745373713, 7.069216132062118, 8.45795003757146, 10.166246469416397, 11.18], [[[0.0, 0.0]], [[2.866863000573773e9, 1.8110225338260242e15], [2.8668630003342786e9, 1.811022533523443e15], [2.866863000214531e9, 1.8110225333721518e15], [2.866862999855289e9, 1.811022532918279e15], [2.866862999855289e9, 1.811022532918279e15], [2.8668629996500072e9, 1.8110225326589228e15], [2.8668629993164253e9, 1.8110225322374692e15], [2.866862999136804e9, 1.8110225320105322e15]], [[2.866862999136804e9, 1.8110225320105322e15], [2.866862998940141e9, 1.811022531762065e15], [2.8668629988418097e9, 1.8110225316378318e15], [2.866862998546816e9, 1.811022531265131e15], [2.866862998546816e9, 1.811022531265131e15], [2.866862998378279e9, 1.811022531052199e15], [2.866862998104324e9, 1.811022530706079e15], [2.7797725826090474e9, -1.246301907071039e15]], [[2.7797725826090474e9, -1.246301907071039e15], [2.551834548904026e9, -1.070817052885434e15], [2.4645969515239916e9, -1.0149266950273625e15], [2.2103134875563207e9, -8.29180159367992e14], [2.230532898380741e9, -8.867728593799065e14], [2.0893787157289627e9, -7.485303586538968e14], [1.9236812982894175e9, -6.539317554995688e14], [1.8421913815957654e9, -6.011949385841866e14]], [[1.8421913815957654e9, -6.011949385841866e14], [1.797365402041088e9, -5.742740107852835e14], [1.7765791208499122e9, -5.624048861778351e14], [1.7154965839900084e9, -5.270513777395431e14], [1.7158555438098996e9, -5.27874039249579e14], [1.6825246765958223e9, -5.084101488401095e14], [1.6316989338296154e9, -4.803306975733894e14], [1.605559806530983e9, -4.660434929786343e14]], [[1.605559806530983e9, -4.660434929786343e14], [1.5400751336980622e9, -4.304300545058329e14], [1.511268638146235e9, -4.1616419966352825e14], [1.427322185709511e9, -3.731808556323356e14], [1.4287896901657114e9, -3.763132442266278e14], [1.3836516621843262e9, -3.5183003342361775e14], [1.3185413151781132e9, -3.215430463607805e14], [1.2858008314605422e9, -3.0636644662624494e14]], [[1.2858008314605422e9, -3.0636644662624494e14], [1.2488253883779542e9, -2.895281233292185e14], [1.231918517150711e9, -2.823173128830472e14], [1.182370709896744e9, -2.608304249431395e14], [1.1827839497677674e9, -2.6157548144475675e14], [1.1558925265491023e9, -2.497145507378343e14], [1.1154459140212388e9, -2.3327400519301584e14], [1.0947846983282042e9, -2.2497896067849603e14]], [[1.0947846983282042e9, -2.2497896067849603e14], [1.058908664148032e9, -2.1072193670426166e14], [1.042713535751185e9, -2.0476635969953984e14], [9.9535448885748e8, -1.8698245374849434e14], [9.958747000923272e8, -1.878116021272552e14], [9.702737549327372e8, -1.7792597707751503e14], [9.322729703453811e8, -1.6473812689010906e14], [9.129712272264317e8, -1.581166896469451e14]], [[9.129712272264317e8, -1.581166896469451e14], [8.861049782038567e8, -1.490251544442763e14], [8.738468617022506e8, -1.4515780092046812e14], [8.379370603301126e8, -1.3363893082301912e14], [8.382514385556167e8, -1.3406820882160594e14], [8.187763342351569e8, -1.2770793825379855e14], [7.895478567974007e8, -1.1897553524485394e14], [7.74631953253732e8, -1.1457877962983458e14]], [[7.74631953253732e8, -1.1457877962983458e14], [7.511939072418003e8, -1.0775266290323083e14], [7.405282914339662e8, -1.0486595527429281e14], [7.092983038995924e8, -9.626622116366908e13], [7.095881988773484e8, -9.660926131119578e13], [6.926659177990146e8, -9.185531282937123e13], [6.673372415045927e8, -8.538539488247617e13], [6.544270010667733e8, -8.213231194937975e13]] … [[33.09489330283545, -0.10388093824858545], [32.18059904897515, -0.09779808924849721], [31.75872912413786, -0.09519610696848389], [30.52612808105413, -0.08753229436750684], [30.533429602866924, -0.08775928445787635], [29.86512275017146, -0.08359545462513127], [28.851929954350986, -0.07780519739733714], [28.33342393625049, -0.07490767080190465]], [[28.33342393625049, -0.07490767080190465], [27.535323766578628, -0.07052349147436221], [27.166929043826386, -0.06864771512841573], [26.090910653973097, -0.06312507615220588], [26.097145251351662, -0.06328666283057291], [25.51383375708734, -0.06028825530024033], [24.629167906788986, -0.05611573610198941], [24.17639394930312, -0.0540282362026966]], [[24.17639394930312, -0.0540282362026966], [23.47838101215403, -0.05086517156787023], [23.155963834105382, -0.04951150334286042], [22.214439162365053, -0.04552821884504411], [22.219728668557202, -0.045642899695356905], [21.70930992572568, -0.043482293459951235], [20.934608129529703, -0.040473007430891814], [20.53797091561812, -0.03896796678502099]], [[20.53797091561812, -0.03896796678502099], [19.925304694883437, -0.036683938065757836], [19.641986767754023, -0.03570615608488385], [18.81463685941047, -0.03283094445669977], [18.81909194519088, -0.03291198356940642], [18.370391047780966, -0.03135431356134021], [17.688438254647963, -0.029182323096970306], [17.339000566309892, -0.028096488854029173]], [[17.339000566309892, -0.028096488854029173], [16.79783445166648, -0.026445715904983423], [16.54711978040133, -0.025738730794016496], [15.81465176850235, -0.023661510210008035], [15.818372610549973, -0.02371843122129304], [15.420698243508884, -0.02259475783765895], [14.814873142727041, -0.0210254374505195], [14.503930279757041, -0.02024121897686766]], [[14.503930279757041, -0.02024121897686766], [14.020576561366438, -0.01904630452035002], [13.795972704929746, -0.018534210547728695], [13.138896608798255, -0.017030812717883797], [13.141973438570407, -0.017070462078281962], [12.784360709722094, -0.01625852613199562], [12.237302072492502, -0.01512172062705544], [11.955603418378852, -0.014553691597160261]], [[11.955603418378852, -0.014553691597160261], [11.515111672128272, -0.013685237509740137], [11.30937548722517, -0.013312532319144456], [10.7054844067312, -0.01221856471483902], [10.707998186955196, -0.012245874920666618], [10.377582150479757, -0.0116556829073737], [9.868201562062456, -0.010825207891933017], [9.60413701717171, -0.010409601922696663]], [[9.60413701717171, -0.010409601922696663], [9.186715028973449, -0.009769715232892292], [8.989893341332744, -0.009493985691540259], [8.40743829923433, -0.008682250828547854], [8.409464325514207, -0.008700809827647229], [8.086837533472254, -0.00826151721533008], [7.5813175605574825, -0.007634805900061432], [7.315150497287971, -0.007318174786318928]], [[7.315150497287971, -0.007318174786318928], [6.882449600458466, -0.00681857171969883], [6.674117537683221, -0.006599715889076468], [6.043064790819487, -0.005942160453465746], [6.044717668297786, -0.00595483730861575], [5.6826928277564, -0.005588238103687528], [5.089042585385844, -0.005033526913254087], [4.760472484808228, -0.0047358548215137184]], [[4.760472484808228, -0.0047358548215137184], [4.492877290754643, -0.004496221874327768], [4.3574115665532664, -0.0043787173040325455], [3.933164038661604, -0.004007563293656011], [3.933346024138561, -0.0040087130699515425], [3.677360546909661, -0.00378447944591193], [3.2319593150461907, -0.003393641971901756], [2.9711224563374286, -0.003161182343152591]]], SciMLBase.ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Any}, SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}, SciMLBase.StandardODEProblem}(SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}(GasChromatographySimulator.odesystem_r!, LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, SciMLBase.DEFAULT_OBSERVED, nothing), [0.0, 0.0], (0.0, 11.18), Any[GasChromatographySimulator.Column(11.18, 0.000104, [0.000104], 1.04e-7, [1.04e-7], "FS5ms", "H2"), GasChromatographySimulator.Program{GasChromatographySimulator.var"#gf#5"{Matrix{Float64}}}([0.0, 60.0, 1680.0, 60.0, 360.0, 60.0], [40.0, 40.0, 180.0, 180.0, 300.0, 300.0], [411564.0, 411564.0, 411564.0, 411564.0, 411564.0, 411564.0], [101300.0, 101300.0, 101300.0, 101300.0, 101300.0, 101300.0], GasChromatographySimulator.var"#gf#5"{Matrix{Float64}}([0.0 0.0 11.18 0.0; 0.0 0.0 11.18 0.0; … ; 0.0 0.0 11.18 0.0; 0.0 0.0 11.18 0.0]), [0.0 0.0 11.18 0.0; 0.0 0.0 11.18 0.0; … ; 0.0 0.0 11.18 0.0; 0.0 0.0 11.18 0.0], 11181×6 extrapolate(interpolate((0.0:0.001:11.18,::Vector{Float64}), ::Matrix{Float64}, Gridded(Linear())), Flat()) with element type Float64:
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
⋮ ⋮
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15
313.15 313.15 453.15 453.15 573.15 573.15, 6-element extrapolate(interpolate((::Vector{Float64},), ::Vector{Float64}, Gridded(Linear())), Flat()) with element type Float64:
411564.0
411564.0
411564.0
411564.0
411564.0
411564.0, 6-element extrapolate(interpolate((::Vector{Float64},), ::Vector{Float64}, Gridded(Linear())), Flat()) with element type Float64:
101300.0
101300.0
101300.0
101300.0
101300.0
101300.0), GasChromatographySimulator.Substance("C30", "638-68-6", 621.54, 41.57, 183.28, 0.001, "Leppert2020b, alkane, alkanes", 6.660172475097402e-5, 0.0, 0.0), GasChromatographySimulator.Options(OwrenZen5(), 1.0e-6, 0.001, "inlet", true, true, "Blumberg", "Pressure")], Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}(), SciMLBase.StandardODEProblem()), OwrenZen5(), OrdinaryDiffEq.InterpolationData{SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}}(SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}(GasChromatographySimulator.odesystem_r!, LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, SciMLBase.DEFAULT_OBSERVED, nothing), [[0.0, 0.0], [34.20269595878165, 2.160614339472559e7], [62.28848440244334, 3.934818258725053e7], [93.1382819637024, 2.7440883943874996e7], [103.58655257395502, 2.4222310687175818e7], [120.6150805728403, 1.973412751111418e7], [133.06373237677175, 1.6976403566312227e7], [147.2419709649057, 1.4297831015999509e7], [160.18216210683906, 1.2224338998228556e7], [173.5741370246344, 1.039752055365651e7] … [2054.8816743470143, 0.23245299453556106], [2066.7604987023255, 0.20356310595019586], [2078.8742246414495, 0.17860768839437596], [2091.1844605584, 0.15701638440217955], [2103.624987196683, 0.1383082533052479], [2116.081433830837, 0.122080266532152], [2128.350844560069, 0.10800610223274533], [2140.0509580856924, 0.09586222499408581], [2150.372168427802, 0.08566019544291648], [2154.3373913260766, 0.08161645769469376]], [0.0, 1.1930355918824205e-8, 2.1727053025696095e-8, 3.5464994054642934e-8, 4.15454947089049e-8, 5.342386350257024e-8, 6.392860839979808e-8, 7.813178793216227e-8, 9.353821767514382e-8, 1.123717922379736e-7 … 2.543775552601881, 2.998100019796116, 3.542231941746685, 4.195076623367371, 4.979939718874574, 5.925799745373713, 7.069216132062118, 8.45795003757146, 10.166246469416397, 11.18], [[[0.0, 0.0]], [[2.866863000573773e9, 1.8110225338260242e15], [2.8668630003342786e9, 1.811022533523443e15], [2.866863000214531e9, 1.8110225333721518e15], [2.866862999855289e9, 1.811022532918279e15], [2.866862999855289e9, 1.811022532918279e15], [2.8668629996500072e9, 1.8110225326589228e15], [2.8668629993164253e9, 1.8110225322374692e15], [2.866862999136804e9, 1.8110225320105322e15]], [[2.866862999136804e9, 1.8110225320105322e15], [2.866862998940141e9, 1.811022531762065e15], [2.8668629988418097e9, 1.8110225316378318e15], [2.866862998546816e9, 1.811022531265131e15], [2.866862998546816e9, 1.811022531265131e15], [2.866862998378279e9, 1.811022531052199e15], [2.866862998104324e9, 1.811022530706079e15], [2.7797725826090474e9, -1.246301907071039e15]], [[2.7797725826090474e9, -1.246301907071039e15], [2.551834548904026e9, -1.070817052885434e15], [2.4645969515239916e9, -1.0149266950273625e15], [2.2103134875563207e9, -8.29180159367992e14], [2.230532898380741e9, -8.867728593799065e14], [2.0893787157289627e9, -7.485303586538968e14], [1.9236812982894175e9, -6.539317554995688e14], [1.8421913815957654e9, -6.011949385841866e14]], [[1.8421913815957654e9, -6.011949385841866e14], [1.797365402041088e9, -5.742740107852835e14], [1.7765791208499122e9, -5.624048861778351e14], [1.7154965839900084e9, -5.270513777395431e14], [1.7158555438098996e9, -5.27874039249579e14], [1.6825246765958223e9, -5.084101488401095e14], [1.6316989338296154e9, -4.803306975733894e14], [1.605559806530983e9, -4.660434929786343e14]], [[1.605559806530983e9, -4.660434929786343e14], [1.5400751336980622e9, -4.304300545058329e14], [1.511268638146235e9, -4.1616419966352825e14], [1.427322185709511e9, -3.731808556323356e14], [1.4287896901657114e9, -3.763132442266278e14], [1.3836516621843262e9, -3.5183003342361775e14], [1.3185413151781132e9, -3.215430463607805e14], [1.2858008314605422e9, -3.0636644662624494e14]], [[1.2858008314605422e9, -3.0636644662624494e14], [1.2488253883779542e9, -2.895281233292185e14], [1.231918517150711e9, -2.823173128830472e14], [1.182370709896744e9, -2.608304249431395e14], [1.1827839497677674e9, -2.6157548144475675e14], [1.1558925265491023e9, -2.497145507378343e14], [1.1154459140212388e9, -2.3327400519301584e14], [1.0947846983282042e9, -2.2497896067849603e14]], [[1.0947846983282042e9, -2.2497896067849603e14], [1.058908664148032e9, -2.1072193670426166e14], [1.042713535751185e9, -2.0476635969953984e14], [9.9535448885748e8, -1.8698245374849434e14], [9.958747000923272e8, -1.878116021272552e14], [9.702737549327372e8, -1.7792597707751503e14], [9.322729703453811e8, -1.6473812689010906e14], [9.129712272264317e8, -1.581166896469451e14]], [[9.129712272264317e8, -1.581166896469451e14], [8.861049782038567e8, -1.490251544442763e14], [8.738468617022506e8, -1.4515780092046812e14], [8.379370603301126e8, -1.3363893082301912e14], [8.382514385556167e8, -1.3406820882160594e14], [8.187763342351569e8, -1.2770793825379855e14], [7.895478567974007e8, -1.1897553524485394e14], [7.74631953253732e8, -1.1457877962983458e14]], [[7.74631953253732e8, -1.1457877962983458e14], [7.511939072418003e8, -1.0775266290323083e14], [7.405282914339662e8, -1.0486595527429281e14], [7.092983038995924e8, -9.626622116366908e13], [7.095881988773484e8, -9.660926131119578e13], [6.926659177990146e8, -9.185531282937123e13], [6.673372415045927e8, -8.538539488247617e13], [6.544270010667733e8, -8.213231194937975e13]] … [[33.09489330283545, -0.10388093824858545], [32.18059904897515, -0.09779808924849721], [31.75872912413786, -0.09519610696848389], [30.52612808105413, -0.08753229436750684], [30.533429602866924, -0.08775928445787635], [29.86512275017146, -0.08359545462513127], [28.851929954350986, -0.07780519739733714], [28.33342393625049, -0.07490767080190465]], [[28.33342393625049, -0.07490767080190465], [27.535323766578628, -0.07052349147436221], [27.166929043826386, -0.06864771512841573], [26.090910653973097, -0.06312507615220588], [26.097145251351662, -0.06328666283057291], [25.51383375708734, -0.06028825530024033], [24.629167906788986, -0.05611573610198941], [24.17639394930312, -0.0540282362026966]], [[24.17639394930312, -0.0540282362026966], [23.47838101215403, -0.05086517156787023], [23.155963834105382, -0.04951150334286042], [22.214439162365053, -0.04552821884504411], [22.219728668557202, -0.045642899695356905], [21.70930992572568, -0.043482293459951235], [20.934608129529703, -0.040473007430891814], [20.53797091561812, -0.03896796678502099]], [[20.53797091561812, -0.03896796678502099], [19.925304694883437, -0.036683938065757836], [19.641986767754023, -0.03570615608488385], [18.81463685941047, -0.03283094445669977], [18.81909194519088, -0.03291198356940642], [18.370391047780966, -0.03135431356134021], [17.688438254647963, -0.029182323096970306], [17.339000566309892, -0.028096488854029173]], [[17.339000566309892, -0.028096488854029173], [16.79783445166648, -0.026445715904983423], [16.54711978040133, -0.025738730794016496], [15.81465176850235, -0.023661510210008035], [15.818372610549973, -0.02371843122129304], [15.420698243508884, -0.02259475783765895], [14.814873142727041, -0.0210254374505195], [14.503930279757041, -0.02024121897686766]], [[14.503930279757041, -0.02024121897686766], [14.020576561366438, -0.01904630452035002], [13.795972704929746, -0.018534210547728695], [13.138896608798255, -0.017030812717883797], [13.141973438570407, -0.017070462078281962], [12.784360709722094, -0.01625852613199562], [12.237302072492502, -0.01512172062705544], [11.955603418378852, -0.014553691597160261]], [[11.955603418378852, -0.014553691597160261], [11.515111672128272, -0.013685237509740137], [11.30937548722517, -0.013312532319144456], [10.7054844067312, -0.01221856471483902], [10.707998186955196, -0.012245874920666618], [10.377582150479757, -0.0116556829073737], [9.868201562062456, -0.010825207891933017], [9.60413701717171, -0.010409601922696663]], [[9.60413701717171, -0.010409601922696663], [9.186715028973449, -0.009769715232892292], [8.989893341332744, -0.009493985691540259], [8.40743829923433, -0.008682250828547854], [8.409464325514207, -0.008700809827647229], [8.086837533472254, -0.00826151721533008], [7.5813175605574825, -0.007634805900061432], [7.315150497287971, -0.007318174786318928]], [[7.315150497287971, -0.007318174786318928], [6.882449600458466, -0.00681857171969883], [6.674117537683221, -0.006599715889076468], [6.043064790819487, -0.005942160453465746], [6.044717668297786, -0.00595483730861575], [5.6826928277564, -0.005588238103687528], [5.089042585385844, -0.005033526913254087], [4.760472484808228, -0.0047358548215137184]], [[4.760472484808228, -0.0047358548215137184], [4.492877290754643, -0.004496221874327768], [4.3574115665532664, -0.0043787173040325455], [3.933164038661604, -0.004007563293656011], [3.933346024138561, -0.0040087130699515425], [3.677360546909661, -0.00378447944591193], [3.2319593150461907, -0.003393641971901756], [2.9711224563374286, -0.003161182343152591]]], true, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}([2154.3373913260766, 0.08161645769469376], [2150.372168427802, 0.08566019544291648], [4.760472484808228, -0.0047358548215137184], [4.492877290754643, -0.004496221874327768], [4.3574115665532664, -0.0043787173040325455], [3.933164038661604, -0.004007563293656011], [3.933346024138561, -0.0040087130699515425], [3.677360546909661, -0.00378447944591193], [3.2319593150461907, -0.003393641971901756], [2.9711224563374286, -0.003161182343152591], [0.0009162717533142529, -1.1150306316233684e-6], [2153.9439553612106, 0.08203256717940685], [0.00042531468454695876, -0.012866698787424786], OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}(0.16666666666666666, 0.0625, 0.1875, 0.25, -0.75, -0.75, 3.75, -3.0, 0.5, 0.26895043731778423, -0.7084548104956269, 0.8658892128279884, 0.15462307371928363, 0.06184922948771345, -0.02947695035460993, 0.18500664893617022, 0.4802345261121857, -0.5337849069148937, -0.013090093085106383, 0.7861107753062541, 0.08783068783068783, 0.3006060606060606, 0.22777777777777777, 0.027777777777777776, 0.06218596218596219, 0.2938217338217338, 0.16666666666666666, 0.25, 0.5, 0.5, 0.6428571428571429, 0.875, -0.19894179894179895, 0.9115151515151515, -1.9777777777777779, -0.1111111111111111, 1.67013727013727, -0.2938217338217338, 1.892063492063492, -6.067155067155067, 7.282458282458283, -4.0195360195360195, -7.214545454545455, 20.676923076923078, -20.31142191142191, 7.14965034965035, 7.866666666666666, -18.78205128205128, 13.508547008547009, -2.3653846153846154, 2.0, -5.294871794871795, 4.534188034188034, -1.2115384615384615, -1.4924630924630924, 1.5785667324128863, 1.1958838881915805, -1.219801565955412, -7.051721611721612, 16.273203719357564, -11.978886071193763, 3.0512256973795435, 4.0, -8.384615384615385, 5.769230769230769, -1.3846153846153846))), true, 0, DiffEqBase.DEStats
Number of function 1 evaluations: 1200
Number of function 2 evaluations: 0
Number of W matrix evaluations: 0
Number of linear solves: 0
Number of Jacobians created: 0
Number of nonlinear solver iterations: 0
Number of nonlinear solver convergence failures: 0
Number of rootfind condition calls: 0
Number of accepted steps: 137
Number of rejected steps: 34, :Success)])We know can compare the simulation results with the measured chromatogram. The file Leppert2020b_measured_RT_progD.csv contains the retention times and peak widths (as standard deviations) from the measurement.
measurement_D = DataFrame(CSV.File("../../data/Leppert2020b/Leppert2020b_measured_RT_progD.csv", header=1, silencewarnings=true));
measurement_D[!, 2] = measurement_D[!, 2] .* 60.0; # conversion from min -> s
rename!(measurement_D, [:Name, :tR, :τR]);22 rows × 3 columns
| Name | tR | τR | |
|---|---|---|---|
| String3 | Float64 | Float64 | |
| 1 | C9 | 151.02 | 0.452 |
| 2 | C10 | 273.54 | 0.654 |
| 3 | C11 | 428.88 | 0.801 |
| 4 | C12 | 596.28 | 0.872 |
| 5 | C13 | 763.08 | 0.918 |
| 6 | C14 | 923.88 | 0.926 |
| 7 | C15 | 1077.24 | 0.944 |
| 8 | C16 | 1223.22 | 0.936 |
| 9 | C17 | 1362.06 | 0.94 |
| 10 | C18 | 1494.18 | 0.951 |
| 11 | C19 | 1620.36 | 0.956 |
| 12 | C20 | 1741.08 | 0.988 |
| 13 | C21 | 1853.28 | 0.657 |
| 14 | C22 | 1914.18 | 0.466 |
| 15 | C23 | 1958.04 | 0.391 |
| 16 | C24 | 1993.92 | 0.38 |
| 17 | C25 | 2025.18 | 0.343 |
| 18 | C26 | 2053.44 | 0.333 |
| 19 | C27 | 2079.42 | 0.327 |
| 20 | C28 | 2103.9 | 0.311 |
| 21 | C29 | 2127.0 | 0.318 |
| 22 | C30 | 2149.2 | 0.306 |
The simulated and measured separations can be compared by comparing the peak lists:
compare = GasChromatographySimulator.compare_peaklist(measurement_D, peaklist)22 rows × 9 columns
| Name | tR1 | tR2 | ΔtR | rel_tR | τR1 | τR2 | ΔτR | rel_τR | |
|---|---|---|---|---|---|---|---|---|---|
| String3 | Float64 | Float64 | Float64 | Float64 | Float64 | Float64 | Float64 | Float64 | |
| 1 | C9 | 151.02 | 140.736 | 10.2845 | 6.81002 | 0.452 | 0.389365 | 0.0626355 | 13.8574 |
| 2 | C10 | 273.54 | 260.067 | 13.4728 | 4.92534 | 0.654 | 0.572035 | 0.0819647 | 12.5328 |
| 3 | C11 | 428.88 | 412.8 | 16.0797 | 3.74923 | 0.801 | 0.694334 | 0.106666 | 13.3166 |
| 4 | C12 | 596.28 | 580.176 | 16.1041 | 2.70077 | 0.872 | 0.756106 | 0.115894 | 13.2906 |
| 5 | C13 | 763.08 | 747.111 | 15.9688 | 2.09268 | 0.918 | 0.786098 | 0.131902 | 14.3684 |
| 6 | C14 | 923.88 | 907.119 | 16.761 | 1.8142 | 0.926 | 0.804631 | 0.121369 | 13.1068 |
| 7 | C15 | 1077.24 | 1061.4 | 15.8375 | 1.47019 | 0.944 | 0.815528 | 0.128472 | 13.6094 |
| 8 | C16 | 1223.22 | 1208.71 | 14.51 | 1.18622 | 0.936 | 0.820451 | 0.115549 | 12.345 |
| 9 | C17 | 1362.06 | 1348.33 | 13.7323 | 1.0082 | 0.94 | 0.827944 | 0.112056 | 11.9209 |
| 10 | C18 | 1494.18 | 1481.96 | 12.2153 | 0.817528 | 0.951 | 0.832643 | 0.118357 | 12.4456 |
| 11 | C19 | 1620.36 | 1608.62 | 11.7373 | 0.724366 | 0.956 | 0.838851 | 0.117149 | 12.254 |
| 12 | C20 | 1741.08 | 1730.23 | 10.8507 | 0.623217 | 0.988 | 0.844286 | 0.143714 | 14.546 |
| 13 | C21 | 1853.28 | 1849.8 | 3.48419 | 0.188001 | 0.657 | 0.644716 | 0.0122839 | 1.8697 |
| 14 | C22 | 1914.18 | 1915.21 | -1.03465 | -0.0540518 | 0.466 | 0.428977 | 0.0370227 | 7.94478 |
| 15 | C23 | 1958.04 | 1961.05 | -3.00671 | -0.153557 | 0.391 | 0.358729 | 0.0322711 | 8.25348 |
| 16 | C24 | 1993.92 | 1998.01 | -4.08506 | -0.204876 | 0.38 | 0.324749 | 0.055251 | 14.5397 |
| 17 | C25 | 2025.18 | 2029.76 | -4.5835 | -0.226326 | 0.343 | 0.305047 | 0.037953 | 11.065 |
| 18 | C26 | 2053.44 | 2058.46 | -5.01769 | -0.244356 | 0.333 | 0.295771 | 0.0372289 | 11.1798 |
| 19 | C27 | 2079.42 | 2084.51 | -5.09458 | -0.245 | 0.327 | 0.291112 | 0.0358884 | 10.975 |
| 20 | C28 | 2103.9 | 2109.06 | -5.16049 | -0.245282 | 0.311 | 0.287879 | 0.0231208 | 7.43435 |
| 21 | C29 | 2127.0 | 2132.24 | -5.24121 | -0.246413 | 0.318 | 0.286462 | 0.0315379 | 9.91757 |
| 22 | C30 | 2149.2 | 2154.34 | -5.13739 | -0.239037 | 0.306 | 0.285686 | 0.0203141 | 6.63858 |
Differences between measured and simulated retention times are in the range of some seconds, while the retention times are in minutes. Most differences are below 1%. The measured peak widths are 10 to 15% higher than the calculated peak widths.
The measured and simulated separation can also be compared by a plot of the chromatograms:
chrom_D = DataFrame(CSV.File("../../data/Leppert2020b/Leppert2020b_measured_Chrom_progD.csv", header=1, silencewarnings=true))
p_chrom, t, chrom = GasChromatographySimulator.plot_chromatogram(peaklist, (0.0, round(chrom_D[end,1];sigdigits=2)); annotation=false, number=true, mirror=true, offset=0.0)
plot!(p_chrom, chrom_D[!,1], chrom_D[!,2].*400.0.+0.1)
ylims!(-1.6,1.6)
xlims!(0.0,round(chrom_D[end,1];sigdigits=2))
p_chrom
The measured chromatogram is plotted in orange, while the simulated chromatogram is plotted in blue and mirrored.
Thermal gradient GC
The following example of a thermal gradient GC is the example medium gradient from [8].
Standard options are used (here the option ng has to be false):
opt_tg = GasChromatographySimulator.Options()GasChromatographySimulator.Options(OwrenZen5(), 1.0e-6, 0.001, "inlet", true, false, "Blumberg", "Pressure")And the column is 2.05 m long and has the same diameter, film thickness and stationary phase as in the example before. Here Helium is used as mobile phase.
col_tg = GasChromatographySimulator.Column(2.05, 0.104e-3, 0.104e-6, "FS5ms", "He");GasChromatographySimulator.Column(2.05, 0.000104, [0.000104], 1.04e-7, [1.04e-7], "FS5ms", "He")The program is taken from the measured temperatures and pressures during the GC run, stored in the file Leppert2020b_prog_settings_med_gradient_x90.csv.
prog_settings = DataFrame(CSV.File("../../data/Leppert2020b/Leppert2020b_prog_settings_med_gradient_x90.csv", header=1, silencewarnings=true));2,157 rows × 5 columns
| Deltat | T | DeltaT | pinj | pdet | |
|---|---|---|---|---|---|
| Float64 | Float64 | Float64 | Float64 | Float64 | |
| 1 | 0.0 | 49.323 | -2.829 | 253.289 | 230.169 |
| 2 | 0.05 | 49.323 | -2.829 | 253.289 | 230.169 |
| 3 | 0.04 | 49.077 | -2.583 | 253.272 | 230.206 |
| 4 | 0.05 | 49.323 | -2.829 | 253.289 | 230.169 |
| 5 | 0.04 | 49.323 | -2.829 | 253.289 | 230.169 |
| 6 | 0.05 | 49.077 | -2.337 | 253.272 | 230.206 |
| 7 | 0.05 | 49.077 | -2.337 | 253.272 | 230.206 |
| 8 | 0.04 | 49.323 | -2.583 | 253.289 | 230.169 |
| 9 | 0.05 | 49.077 | -2.583 | 253.272 | 230.206 |
| 10 | 0.04 | 49.077 | -2.337 | 253.272 | 230.206 |
| 11 | 0.05 | 49.077 | -2.583 | 253.272 | 230.206 |
| 12 | 0.04 | 48.954 | -2.583 | 253.263 | 230.224 |
| 13 | 0.05 | 48.831 | -2.337 | 253.254 | 230.243 |
| 14 | 0.05 | 49.077 | -2.706 | 253.272 | 230.206 |
| 15 | 0.04 | 49.077 | -2.583 | 253.272 | 230.206 |
| 16 | 0.05 | 48.954 | -2.46 | 253.263 | 230.224 |
| 17 | 0.04 | 49.077 | -2.706 | 253.272 | 230.206 |
| 18 | 0.05 | 49.077 | -2.706 | 253.272 | 230.206 |
| 19 | 0.04 | 48.831 | -2.46 | 253.254 | 230.243 |
| 20 | 0.05 | 49.077 | -2.583 | 253.272 | 230.206 |
| 21 | 0.05 | 48.954 | -2.46 | 253.263 | 230.224 |
| 22 | 0.04 | 48.954 | -2.46 | 253.263 | 230.224 |
| 23 | 0.05 | 48.954 | -2.46 | 253.263 | 230.224 |
| 24 | 0.04 | 49.077 | -2.337 | 253.272 | 230.206 |
| 25 | 0.05 | 48.954 | -2.091 | 253.263 | 230.224 |
| 26 | 0.05 | 48.954 | -2.214 | 253.263 | 230.224 |
| 27 | 0.04 | 48.954 | -2.214 | 253.263 | 230.224 |
| 28 | 0.05 | 49.077 | -2.214 | 253.272 | 230.206 |
| 29 | 0.04 | 49.077 | -2.337 | 253.272 | 230.206 |
| 30 | 0.05 | 48.954 | -2.46 | 253.263 | 230.224 |
| 31 | 0.04 | 48.954 | -2.46 | 253.263 | 230.224 |
| 32 | 0.05 | 48.954 | -2.214 | 253.263 | 230.224 |
| 33 | 0.05 | 49.077 | -2.337 | 253.272 | 230.206 |
| 34 | 0.04 | 49.323 | -2.829 | 253.289 | 230.169 |
| 35 | 0.05 | 49.323 | -2.829 | 253.289 | 230.169 |
| 36 | 0.05 | 49.569 | -2.829 | 253.307 | 230.132 |
| 37 | 0.04 | 49.323 | -2.583 | 253.289 | 230.169 |
| 38 | 0.05 | 49.323 | -2.583 | 253.289 | 230.169 |
| 39 | 0.04 | 49.323 | -2.829 | 253.289 | 230.169 |
| 40 | 0.05 | 49.323 | -2.952 | 253.289 | 230.169 |
| 41 | 0.04 | 49.323 | -2.829 | 253.289 | 230.169 |
| 42 | 0.05 | 48.954 | -2.46 | 253.263 | 230.224 |
| 43 | 0.05 | 48.954 | -2.46 | 253.263 | 230.224 |
| 44 | 0.04 | 49.077 | -2.337 | 253.272 | 230.206 |
| 45 | 0.05 | 49.077 | -2.583 | 253.272 | 230.206 |
| 46 | 0.04 | 49.077 | -2.337 | 253.272 | 230.206 |
| 47 | 0.05 | 49.077 | -2.214 | 253.272 | 230.206 |
| 48 | 0.05 | 49.077 | -2.091 | 253.272 | 230.206 |
| 49 | 0.04 | 49.077 | -2.214 | 253.272 | 230.206 |
| 50 | 0.05 | 49.077 | -2.337 | 253.272 | 230.206 |
| 51 | 0.04 | 49.077 | -2.583 | 253.272 | 230.206 |
| 52 | 0.05 | 48.954 | -2.46 | 253.263 | 230.224 |
| 53 | 0.04 | 49.323 | -2.829 | 253.289 | 230.169 |
| 54 | 0.05 | 49.323 | -2.829 | 253.289 | 230.169 |
| 55 | 0.05 | 49.323 | -2.829 | 253.289 | 230.169 |
| 56 | 0.04 | 49.077 | -2.337 | 253.272 | 230.206 |
| 57 | 0.05 | 49.077 | -2.583 | 253.272 | 230.206 |
| 58 | 0.05 | 49.323 | -2.829 | 253.289 | 230.169 |
| 59 | 0.04 | 49.323 | -2.829 | 253.289 | 230.169 |
| 60 | 0.04 | 49.077 | -2.337 | 253.272 | 230.206 |
| 61 | 0.05 | 49.077 | -2.337 | 253.272 | 230.206 |
| 62 | 0.05 | 48.954 | -2.214 | 253.263 | 230.224 |
| 63 | 0.04 | 48.954 | -2.214 | 253.263 | 230.224 |
| 64 | 0.05 | 49.323 | -2.46 | 253.289 | 230.169 |
| 65 | 0.05 | 49.323 | -2.583 | 253.289 | 230.169 |
| 66 | 0.04 | 48.954 | -2.214 | 253.263 | 230.224 |
| 67 | 0.05 | 48.954 | -2.091 | 253.263 | 230.224 |
| 68 | 0.04 | 49.077 | -2.214 | 253.272 | 230.206 |
| 69 | 0.05 | 49.077 | -2.091 | 253.272 | 230.206 |
| 70 | 0.04 | 49.323 | -2.337 | 253.289 | 230.169 |
| 71 | 0.05 | 49.446 | -2.46 | 253.298 | 230.15 |
| 72 | 0.05 | 49.446 | -2.337 | 253.298 | 230.15 |
| 73 | 0.04 | 49.569 | -2.46 | 253.307 | 230.132 |
| 74 | 0.05 | 49.692 | -2.583 | 253.316 | 230.114 |
| 75 | 0.04 | 49.692 | -2.706 | 253.316 | 230.114 |
| 76 | 0.05 | 49.569 | -2.583 | 253.307 | 230.132 |
| 77 | 0.05 | 49.692 | -2.706 | 253.316 | 230.114 |
| 78 | 0.04 | 49.446 | -2.46 | 253.298 | 230.15 |
| 79 | 0.05 | 49.446 | -2.337 | 253.298 | 230.15 |
| 80 | 0.04 | 49.569 | -2.706 | 253.307 | 230.132 |
| 81 | 0.05 | 49.569 | -2.706 | 253.307 | 230.132 |
| 82 | 0.04 | 49.446 | -2.583 | 253.298 | 230.15 |
| 83 | 0.05 | 49.323 | -2.46 | 253.289 | 230.169 |
| 84 | 0.05 | 49.077 | -2.214 | 253.272 | 230.206 |
| 85 | 0.04 | 49.446 | -2.583 | 253.298 | 230.15 |
| 86 | 0.05 | 49.446 | -2.706 | 253.298 | 230.15 |
| 87 | 0.05 | 49.446 | -2.583 | 253.298 | 230.15 |
| 88 | 0.04 | 49.323 | -2.583 | 253.289 | 230.169 |
| 89 | 0.05 | 49.446 | -2.706 | 253.298 | 230.15 |
| 90 | 0.04 | 49.323 | -2.583 | 253.289 | 230.169 |
| 91 | 0.05 | 49.323 | -2.583 | 253.289 | 230.169 |
| 92 | 0.04 | 49.569 | -2.829 | 253.307 | 230.132 |
| 93 | 0.05 | 49.446 | -2.952 | 253.298 | 230.15 |
| 94 | 0.05 | 49.446 | -2.706 | 253.298 | 230.15 |
| 95 | 0.04 | 49.323 | -2.583 | 253.289 | 230.169 |
| 96 | 0.05 | 49.323 | -2.829 | 253.289 | 230.169 |
| 97 | 0.04 | 49.569 | -2.829 | 253.307 | 230.132 |
| 98 | 0.05 | 49.446 | -2.706 | 253.298 | 230.15 |
| 99 | 0.05 | 49.446 | -2.706 | 253.298 | 230.15 |
| 100 | 0.04 | 49.446 | -2.706 | 253.298 | 230.15 |
| 101 | 0.04 | 49.446 | -2.952 | 253.298 | 230.15 |
| 102 | 0.05 | 49.323 | -2.829 | 253.289 | 230.169 |
| 103 | 0.05 | 49.446 | -3.075 | 253.298 | 230.15 |
| 104 | 0.04 | 49.446 | -2.952 | 253.298 | 230.15 |
| 105 | 0.05 | 49.323 | -2.829 | 253.289 | 230.169 |
| 106 | 0.05 | 49.323 | -2.583 | 253.289 | 230.169 |
| 107 | 0.04 | 49.446 | -2.706 | 253.298 | 230.15 |
| 108 | 0.05 | 49.077 | -2.337 | 253.272 | 230.206 |
| 109 | 0.05 | 49.323 | -2.829 | 253.289 | 230.169 |
| 110 | 0.04 | 49.323 | -2.829 | 253.289 | 230.169 |
| 111 | 0.04 | 49.077 | -2.583 | 253.272 | 230.206 |
| 112 | 0.05 | 49.077 | -2.337 | 253.272 | 230.206 |
| 113 | 0.05 | 49.077 | -2.706 | 253.272 | 230.206 |
| 114 | 0.04 | 49.077 | -2.706 | 253.272 | 230.206 |
| 115 | 0.05 | 49.077 | -2.706 | 253.272 | 230.206 |
| 116 | 0.04 | 48.954 | -2.583 | 253.263 | 230.224 |
| 117 | 0.05 | 48.954 | -2.583 | 253.263 | 230.224 |
| 118 | 0.05 | 48.954 | -2.706 | 253.263 | 230.224 |
| 119 | 0.04 | 48.954 | -2.706 | 253.263 | 230.224 |
| 120 | 0.05 | 48.954 | -2.46 | 253.263 | 230.224 |
| 121 | 0.04 | 48.831 | -2.337 | 253.254 | 230.243 |
| 122 | 0.05 | 48.954 | -2.214 | 253.263 | 230.224 |
| 123 | 0.05 | 48.954 | -2.214 | 253.263 | 230.224 |
| 124 | 0.04 | 49.077 | -2.583 | 253.272 | 230.206 |
| 125 | 0.05 | 49.077 | -2.583 | 253.272 | 230.206 |
| 126 | 0.04 | 49.077 | -2.583 | 253.272 | 230.206 |
| 127 | 0.05 | 48.831 | -2.337 | 253.254 | 230.243 |
| 128 | 0.05 | 48.831 | -2.337 | 253.254 | 230.243 |
| 129 | 0.04 | 48.831 | -2.337 | 253.254 | 230.243 |
| 130 | 0.05 | 48.831 | -2.46 | 253.254 | 230.243 |
| 131 | 0.04 | 48.708 | -2.214 | 253.245 | 230.261 |
| 132 | 0.05 | 48.831 | -2.337 | 253.254 | 230.243 |
| 133 | 0.05 | 48.954 | -2.46 | 253.263 | 230.224 |
| 134 | 0.04 | 49.323 | -2.583 | 253.289 | 230.169 |
| 135 | 0.05 | 49.077 | -2.214 | 253.272 | 230.206 |
| 136 | 0.05 | 49.446 | -2.583 | 253.298 | 230.15 |
| 137 | 0.04 | 49.323 | -2.337 | 253.289 | 230.169 |
| 138 | 0.05 | 49.323 | -2.337 | 253.289 | 230.169 |
| 139 | 0.04 | 49.323 | -2.337 | 253.289 | 230.169 |
| 140 | 0.05 | 49.446 | -2.46 | 253.298 | 230.15 |
| 141 | 0.04 | 49.323 | -2.583 | 253.289 | 230.169 |
| 142 | 0.05 | 49.323 | -2.46 | 253.289 | 230.169 |
| 143 | 0.05 | 49.077 | -2.214 | 253.272 | 230.206 |
| 144 | 0.04 | 49.077 | -2.091 | 253.272 | 230.206 |
| 145 | 0.05 | 49.446 | -2.46 | 253.298 | 230.15 |
| 146 | 0.05 | 49.569 | -2.706 | 253.307 | 230.132 |
| 147 | 0.04 | 49.569 | -2.583 | 253.307 | 230.132 |
| 148 | 0.05 | 49.323 | -2.214 | 253.289 | 230.169 |
| 149 | 0.04 | 49.077 | -2.214 | 253.272 | 230.206 |
| 150 | 0.05 | 48.954 | -2.214 | 253.263 | 230.224 |
| 151 | 0.05 | 49.077 | -2.583 | 253.272 | 230.206 |
| 152 | 0.04 | 49.323 | -2.583 | 253.289 | 230.169 |
| 153 | 0.05 | 49.446 | -2.706 | 253.298 | 230.15 |
| 154 | 0.04 | 49.446 | -2.706 | 253.298 | 230.15 |
| 155 | 0.05 | 49.323 | -2.583 | 253.289 | 230.169 |
| 156 | 0.05 | 49.323 | -2.829 | 253.289 | 230.169 |
| 157 | 0.04 | 49.323 | -2.583 | 253.289 | 230.169 |
| 158 | 0.05 | 49.323 | -2.46 | 253.289 | 230.169 |
| 159 | 0.04 | 49.323 | -2.46 | 253.289 | 230.169 |
| 160 | 0.05 | 49.323 | -2.46 | 253.289 | 230.169 |
| 161 | 0.04 | 49.077 | -2.337 | 253.272 | 230.206 |
| 162 | 0.05 | 49.077 | -2.337 | 253.272 | 230.206 |
| 163 | 0.05 | 48.954 | -2.091 | 253.263 | 230.224 |
| 164 | 0.04 | 49.077 | -2.337 | 253.272 | 230.206 |
| 165 | 0.05 | 49.077 | -2.583 | 253.272 | 230.206 |
| 166 | 0.05 | 48.954 | -2.583 | 253.263 | 230.224 |
| 167 | 0.04 | 48.954 | -2.46 | 253.263 | 230.224 |
| 168 | 0.05 | 48.954 | -2.214 | 253.263 | 230.224 |
| 169 | 0.04 | 48.954 | -2.214 | 253.263 | 230.224 |
| 170 | 0.05 | 48.954 | -2.46 | 253.263 | 230.224 |
| 171 | 0.05 | 48.954 | -2.46 | 253.263 | 230.224 |
| 172 | 0.04 | 49.077 | -2.583 | 253.272 | 230.206 |
| 173 | 0.05 | 49.323 | -2.829 | 253.289 | 230.169 |
| 174 | 0.05 | 49.323 | -2.583 | 253.289 | 230.169 |
| 175 | 0.04 | 49.077 | -2.337 | 253.272 | 230.206 |
| 176 | 0.04 | 49.077 | -2.337 | 253.272 | 230.206 |
| 177 | 0.05 | 49.077 | -2.214 | 253.272 | 230.206 |
| 178 | 0.05 | 49.077 | -2.091 | 253.272 | 230.206 |
| 179 | 0.04 | 49.077 | -2.337 | 253.272 | 230.206 |
| 180 | 0.05 | 49.323 | -2.583 | 253.289 | 230.169 |
| 181 | 0.05 | 49.077 | -2.214 | 253.272 | 230.206 |
| 182 | 0.04 | 49.077 | -2.214 | 253.272 | 230.206 |
| 183 | 0.05 | 49.077 | -2.583 | 253.272 | 230.206 |
| 184 | 0.04 | 48.954 | -2.46 | 253.263 | 230.224 |
| 185 | 0.05 | 49.077 | -2.706 | 253.272 | 230.206 |
| 186 | 0.05 | 48.954 | -2.46 | 253.263 | 230.224 |
| 187 | 0.04 | 48.708 | -2.337 | 253.245 | 230.261 |
| 188 | 0.05 | 48.954 | -2.583 | 253.263 | 230.224 |
| 189 | 0.05 | 49.077 | -2.337 | 253.272 | 230.206 |
| 190 | 0.04 | 49.077 | -2.337 | 253.272 | 230.206 |
| 191 | 0.05 | 49.323 | -2.46 | 253.289 | 230.169 |
| 192 | 0.04 | 49.446 | -2.706 | 253.298 | 230.15 |
| 193 | 0.05 | 49.569 | -2.706 | 253.307 | 230.132 |
| 194 | 0.05 | 49.323 | -2.46 | 253.289 | 230.169 |
| 195 | 0.04 | 49.077 | -2.337 | 253.272 | 230.206 |
| 196 | 0.05 | 49.323 | -2.583 | 253.289 | 230.169 |
| 197 | 0.04 | 49.323 | -2.583 | 253.289 | 230.169 |
| 198 | 0.05 | 49.077 | -2.583 | 253.272 | 230.206 |
| 199 | 0.04 | 48.954 | -2.214 | 253.263 | 230.224 |
| 200 | 0.05 | 48.954 | -2.091 | 253.263 | 230.224 |
| 201 | 0.05 | 48.954 | -2.214 | 253.263 | 230.224 |
| 202 | 0.04 | 48.954 | -2.214 | 253.263 | 230.224 |
| 203 | 0.05 | 49.077 | -2.337 | 253.272 | 230.206 |
| 204 | 0.05 | 48.954 | -2.091 | 253.263 | 230.224 |
| 205 | 0.04 | 48.954 | -2.091 | 253.263 | 230.224 |
| 206 | 0.05 | 49.077 | -2.337 | 253.272 | 230.206 |
| 207 | 0.04 | 49.077 | -2.337 | 253.272 | 230.206 |
| 208 | 0.05 | 48.954 | -2.46 | 253.263 | 230.224 |
| 209 | 0.05 | 49.323 | -2.583 | 253.289 | 230.169 |
| 210 | 0.04 | 49.077 | -2.337 | 253.272 | 230.206 |
| 211 | 0.05 | 48.954 | -2.091 | 253.263 | 230.224 |
| 212 | 0.05 | 48.954 | -2.091 | 253.263 | 230.224 |
| 213 | 0.04 | 48.954 | -2.091 | 253.263 | 230.224 |
| 214 | 0.04 | 48.954 | -2.091 | 253.263 | 230.224 |
| 215 | 0.05 | 49.077 | -2.091 | 253.272 | 230.206 |
| 216 | 0.05 | 49.077 | -2.091 | 253.272 | 230.206 |
| 217 | 0.04 | 49.077 | -1.968 | 253.272 | 230.206 |
| 218 | 0.05 | 49.323 | -2.337 | 253.289 | 230.169 |
| 219 | 0.05 | 49.446 | -2.337 | 253.298 | 230.15 |
| 220 | 0.04 | 49.323 | -2.091 | 253.289 | 230.169 |
| 221 | 0.05 | 49.077 | -1.722 | 253.272 | 230.206 |
| 222 | 0.04 | 49.323 | -1.968 | 253.289 | 230.169 |
| 223 | 0.05 | 49.569 | -1.968 | 253.307 | 230.132 |
| 224 | 0.05 | 49.692 | -1.845 | 253.316 | 230.114 |
| 225 | 0.04 | 49.938 | -2.091 | 253.334 | 230.077 |
| 226 | 0.05 | 50.061 | -2.091 | 253.343 | 230.058 |
| 227 | 0.05 | 50.184 | -1.968 | 253.352 | 230.04 |
| 228 | 0.04 | 50.307 | -1.845 | 253.361 | 230.021 |
| 229 | 0.05 | 50.553 | -1.722 | 253.379 | 229.985 |
| 230 | 0.04 | 50.799 | -1.722 | 253.396 | 229.948 |
| 231 | 0.05 | 50.799 | -1.476 | 253.396 | 229.948 |
| 232 | 0.05 | 51.168 | -1.476 | 253.423 | 229.893 |
| 233 | 0.04 | 51.291 | -1.476 | 253.432 | 229.875 |
| 234 | 0.05 | 51.906 | -1.722 | 253.476 | 229.783 |
| 235 | 0.05 | 51.906 | -1.353 | 253.476 | 229.783 |
| 236 | 0.04 | 52.029 | -1.23 | 253.485 | 229.765 |
| 237 | 0.05 | 52.275 | -1.107 | 253.502 | 229.728 |
| 238 | 0.04 | 52.644 | -1.107 | 253.529 | 229.674 |
| 239 | 0.05 | 53.013 | -0.984 | 253.555 | 229.619 |
| 240 | 0.05 | 53.382 | -1.23 | 253.582 | 229.564 |
| 241 | 0.04 | 53.628 | -1.353 | 253.599 | 229.528 |
| 242 | 0.05 | 53.751 | -1.353 | 253.608 | 229.51 |
| 243 | 0.05 | 54.243 | -1.476 | 253.643 | 229.437 |
| 244 | 0.04 | 54.366 | -1.353 | 253.652 | 229.419 |
| 245 | 0.05 | 54.489 | -0.861 | 253.66 | 229.401 |
| 246 | 0.04 | 54.735 | -0.984 | 253.678 | 229.365 |
| 247 | 0.05 | 54.735 | -0.738 | 253.678 | 229.365 |
| 248 | 0.05 | 54.981 | -0.492 | 253.695 | 229.329 |
| 249 | 0.04 | 55.35 | -0.615 | 253.721 | 229.274 |
| 250 | 0.05 | 55.719 | -0.738 | 253.747 | 229.22 |
| 251 | 0.05 | 55.842 | -0.123 | 253.756 | 229.202 |
| 252 | 0.04 | 56.088 | 0.0 | 253.773 | 229.166 |
| 253 | 0.05 | 56.58 | -0.369 | 253.808 | 229.094 |
| 254 | 0.04 | 56.826 | -0.123 | 253.825 | 229.059 |
| 255 | 0.05 | 56.949 | -0.123 | 253.834 | 229.041 |
| 256 | 0.05 | 57.441 | -0.246 | 253.869 | 228.969 |
| 257 | 0.04 | 57.687 | -0.246 | 253.886 | 228.933 |
| 258 | 0.05 | 57.933 | -0.246 | 253.903 | 228.897 |
| 259 | 0.05 | 57.933 | 0.123 | 253.903 | 228.897 |
| 260 | 0.04 | 58.302 | 0.123 | 253.929 | 228.844 |
| 261 | 0.05 | 58.425 | 0.492 | 253.937 | 228.826 |
| 262 | 0.04 | 58.917 | 0.123 | 253.972 | 228.755 |
| 263 | 0.05 | 59.163 | 0.0 | 253.989 | 228.719 |
| 264 | 0.05 | 59.409 | 0.123 | 254.006 | 228.684 |
| 265 | 0.04 | 59.778 | 0.0 | 254.032 | 228.63 |
| 266 | 0.05 | 60.024 | 0.123 | 254.049 | 228.595 |
| 267 | 0.05 | 60.27 | 0.492 | 254.066 | 228.56 |
| 268 | 0.04 | 60.393 | 0.738 | 254.074 | 228.542 |
| 269 | 0.05 | 60.762 | 0.738 | 254.1 | 228.489 |
| 270 | 0.04 | 60.885 | 0.861 | 254.108 | 228.471 |
| 271 | 0.05 | 61.131 | 0.984 | 254.125 | 228.436 |
| 272 | 0.05 | 61.5 | 0.984 | 254.151 | 228.383 |
| 273 | 0.04 | 61.746 | 0.984 | 254.168 | 228.348 |
| 274 | 0.05 | 62.115 | 0.861 | 254.193 | 228.295 |
| 275 | 0.04 | 62.484 | 0.861 | 254.218 | 228.242 |
| 276 | 0.05 | 62.607 | 1.23 | 254.227 | 228.225 |
| 277 | 0.04 | 62.73 | 1.476 | 254.235 | 228.207 |
| 278 | 0.05 | 63.099 | 1.476 | 254.26 | 228.155 |
| 279 | 0.05 | 63.345 | 1.599 | 254.277 | 228.119 |
| 280 | 0.04 | 63.591 | 1.599 | 254.294 | 228.085 |
| 281 | 0.05 | 64.083 | 1.599 | 254.327 | 228.015 |
| 282 | 0.05 | 64.329 | 1.722 | 254.344 | 227.98 |
| 283 | 0.04 | 64.575 | 1.845 | 254.361 | 227.945 |
| 284 | 0.05 | 64.821 | 1.845 | 254.378 | 227.91 |
| 285 | 0.04 | 64.821 | 2.091 | 254.378 | 227.91 |
| 286 | 0.05 | 65.067 | 2.091 | 254.394 | 227.875 |
| 287 | 0.05 | 65.436 | 2.091 | 254.419 | 227.823 |
| 288 | 0.04 | 65.682 | 2.337 | 254.436 | 227.789 |
| 289 | 0.05 | 65.928 | 2.46 | 254.453 | 227.754 |
| 290 | 0.05 | 66.051 | 2.706 | 254.461 | 227.737 |
| 291 | 0.04 | 66.42 | 2.583 | 254.486 | 227.685 |
| 292 | 0.05 | 66.543 | 2.706 | 254.494 | 227.667 |
| 293 | 0.04 | 66.666 | 3.075 | 254.502 | 227.65 |
| 294 | 0.05 | 67.035 | 3.075 | 254.527 | 227.598 |
| 295 | 0.05 | 67.281 | 3.321 | 254.544 | 227.564 |
| 296 | 0.04 | 67.527 | 3.567 | 254.56 | 227.529 |
| 297 | 0.05 | 68.142 | 3.198 | 254.601 | 227.443 |
| 298 | 0.05 | 68.265 | 3.567 | 254.61 | 227.426 |
| 299 | 0.04 | 68.634 | 3.69 | 254.634 | 227.375 |
| 300 | 0.05 | 68.88 | 3.813 | 254.651 | 227.34 |
| 301 | 0.04 | 69.126 | 3.69 | 254.667 | 227.306 |
| 302 | 0.05 | 69.495 | 3.567 | 254.692 | 227.255 |
| 303 | 0.04 | 69.618 | 3.813 | 254.7 | 227.238 |
| 304 | 0.05 | 69.987 | 3.813 | 254.724 | 227.187 |
| 305 | 0.05 | 70.11 | 4.059 | 254.733 | 227.17 |
| 306 | 0.04 | 70.356 | 4.059 | 254.749 | 227.136 |
| 307 | 0.05 | 70.602 | 4.182 | 254.765 | 227.102 |
| 308 | 0.04 | 70.848 | 4.305 | 254.781 | 227.068 |
| 309 | 0.05 | 71.094 | 4.428 | 254.798 | 227.034 |
| 310 | 0.05 | 71.217 | 4.674 | 254.806 | 227.017 |
| 311 | 0.04 | 71.34 | 4.674 | 254.814 | 227.0 |
| 312 | 0.05 | 71.586 | 4.797 | 254.83 | 226.966 |
| 313 | 0.05 | 71.832 | 4.92 | 254.846 | 226.932 |
| 314 | 0.04 | 72.078 | 5.043 | 254.862 | 226.898 |
| 315 | 0.05 | 72.324 | 5.289 | 254.879 | 226.864 |
| 316 | 0.04 | 72.693 | 5.166 | 254.903 | 226.814 |
| 317 | 0.05 | 73.185 | 5.043 | 254.935 | 226.746 |
| 318 | 0.05 | 73.431 | 5.043 | 254.951 | 226.712 |
| 319 | 0.04 | 73.431 | 5.658 | 254.951 | 226.712 |
| 320 | 0.05 | 73.677 | 5.658 | 254.967 | 226.679 |
| 321 | 0.05 | 74.046 | 5.658 | 254.991 | 226.628 |
| 322 | 0.04 | 74.292 | 5.781 | 255.007 | 226.595 |
| 323 | 0.05 | 74.415 | 6.15 | 255.015 | 226.578 |
| 324 | 0.04 | 74.661 | 6.15 | 255.031 | 226.545 |
| 325 | 0.05 | 75.03 | 6.15 | 255.055 | 226.494 |
| 326 | 0.04 | 75.153 | 6.396 | 255.063 | 226.478 |
| 327 | 0.05 | 75.522 | 6.519 | 255.087 | 226.428 |
| 328 | 0.05 | 75.768 | 6.642 | 255.103 | 226.394 |
| 329 | 0.04 | 76.014 | 6.765 | 255.119 | 226.361 |
| 330 | 0.05 | 76.383 | 7.011 | 255.143 | 226.311 |
| 331 | 0.04 | 76.629 | 7.134 | 255.159 | 226.278 |
| 332 | 0.05 | 76.752 | 7.134 | 255.167 | 226.261 |
| 333 | 0.05 | 76.998 | 7.257 | 255.182 | 226.228 |
| 334 | 0.04 | 77.121 | 7.626 | 255.19 | 226.211 |
| 335 | 0.05 | 77.49 | 7.626 | 255.214 | 226.162 |
| 336 | 0.05 | 77.613 | 7.995 | 255.222 | 226.145 |
| 337 | 0.04 | 77.859 | 7.995 | 255.238 | 226.112 |
| 338 | 0.05 | 78.228 | 8.241 | 255.261 | 226.062 |
| 339 | 0.04 | 78.597 | 8.364 | 255.285 | 226.013 |
| 340 | 0.05 | 78.966 | 8.364 | 255.308 | 225.963 |
| 341 | 0.05 | 79.335 | 8.487 | 255.332 | 225.914 |
| 342 | 0.04 | 79.704 | 8.364 | 255.355 | 225.865 |
| 343 | 0.05 | 79.827 | 8.61 | 255.363 | 225.848 |
| 344 | 0.05 | 79.827 | 8.856 | 255.363 | 225.848 |
| 345 | 0.04 | 79.95 | 8.979 | 255.371 | 225.832 |
| 346 | 0.05 | 80.073 | 9.102 | 255.379 | 225.816 |
| 347 | 0.04 | 80.319 | 9.225 | 255.395 | 225.783 |
| 348 | 0.05 | 80.565 | 9.348 | 255.41 | 225.75 |
| 349 | 0.05 | 80.811 | 9.348 | 255.426 | 225.717 |
| 350 | 0.04 | 81.18 | 9.594 | 255.449 | 225.668 |
| 351 | 0.05 | 81.549 | 9.471 | 255.472 | 225.619 |
| 352 | 0.04 | 81.918 | 9.717 | 255.495 | 225.571 |
| 353 | 0.05 | 82.164 | 9.963 | 255.511 | 225.538 |
| 354 | 0.04 | 82.41 | 10.086 | 255.526 | 225.505 |
| 355 | 0.05 | 82.902 | 10.086 | 255.557 | 225.441 |
| 356 | 0.05 | 83.025 | 10.086 | 255.565 | 225.424 |
| 357 | 0.04 | 83.271 | 10.086 | 255.58 | 225.392 |
| 358 | 0.05 | 83.394 | 10.332 | 255.588 | 225.376 |
| 359 | 0.05 | 83.886 | 10.332 | 255.619 | 225.311 |
| 360 | 0.04 | 84.009 | 10.455 | 255.626 | 225.295 |
| 361 | 0.05 | 84.009 | 10.701 | 255.626 | 225.295 |
| 362 | 0.04 | 84.255 | 10.824 | 255.642 | 225.263 |
| 363 | 0.05 | 84.378 | 11.07 | 255.649 | 225.247 |
| 364 | 0.05 | 84.747 | 11.193 | 255.672 | 225.198 |
| 365 | 0.04 | 84.87 | 11.439 | 255.68 | 225.182 |
| 366 | 0.05 | 85.116 | 11.685 | 255.695 | 225.15 |
| 367 | 0.05 | 85.485 | 11.808 | 255.718 | 225.102 |
| 368 | 0.04 | 85.854 | 11.931 | 255.741 | 225.054 |
| 369 | 0.05 | 86.1 | 12.054 | 255.756 | 225.022 |
| 370 | 0.04 | 86.223 | 12.177 | 255.764 | 225.006 |
| 371 | 0.05 | 86.469 | 12.423 | 255.779 | 224.974 |
| 372 | 0.05 | 86.715 | 12.546 | 255.794 | 224.942 |
| 373 | 0.04 | 87.084 | 12.423 | 255.817 | 224.894 |
| 374 | 0.05 | 87.33 | 12.669 | 255.832 | 224.862 |
| 375 | 0.05 | 87.576 | 12.669 | 255.847 | 224.83 |
| 376 | 0.04 | 87.822 | 12.669 | 255.862 | 224.798 |
| 377 | 0.05 | 88.068 | 12.792 | 255.877 | 224.767 |
| 378 | 0.04 | 88.314 | 12.915 | 255.892 | 224.735 |
| 379 | 0.05 | 88.314 | 13.284 | 255.892 | 224.735 |
| 380 | 0.05 | 88.683 | 13.284 | 255.915 | 224.687 |
| 381 | 0.04 | 88.929 | 13.53 | 255.93 | 224.656 |
| 382 | 0.05 | 89.421 | 13.653 | 255.96 | 224.592 |
| 383 | 0.05 | 89.544 | 13.899 | 255.967 | 224.576 |
| 384 | 0.04 | 89.913 | 13.899 | 255.99 | 224.529 |
| 385 | 0.05 | 90.036 | 14.268 | 255.997 | 224.513 |
| 386 | 0.04 | 90.282 | 14.514 | 256.012 | 224.482 |
| 387 | 0.05 | 90.405 | 14.637 | 256.02 | 224.466 |
| 388 | 0.05 | 90.651 | 14.637 | 256.034 | 224.435 |
| 389 | 0.04 | 90.897 | 14.76 | 256.049 | 224.403 |
| 390 | 0.05 | 91.02 | 15.129 | 256.057 | 224.388 |
| 391 | 0.05 | 91.389 | 15.006 | 256.079 | 224.34 |
| 392 | 0.04 | 91.635 | 15.252 | 256.094 | 224.309 |
| 393 | 0.05 | 92.127 | 15.129 | 256.123 | 224.247 |
| 394 | 0.04 | 92.127 | 15.498 | 256.123 | 224.247 |
| 395 | 0.05 | 92.496 | 15.498 | 256.146 | 224.2 |
| 396 | 0.05 | 92.865 | 15.498 | 256.168 | 224.153 |
| 397 | 0.04 | 93.111 | 15.744 | 256.183 | 224.122 |
| 398 | 0.05 | 93.357 | 15.867 | 256.197 | 224.091 |
| 399 | 0.05 | 93.603 | 15.744 | 256.212 | 224.059 |
| 400 | 0.04 | 93.726 | 15.99 | 256.219 | 224.044 |
| 401 | 0.05 | 93.972 | 16.113 | 256.234 | 224.013 |
| 402 | 0.04 | 94.095 | 16.359 | 256.241 | 223.997 |
| 403 | 0.05 | 94.341 | 16.605 | 256.256 | 223.966 |
| 404 | 0.05 | 94.71 | 16.359 | 256.278 | 223.92 |
| 405 | 0.04 | 94.833 | 16.605 | 256.285 | 223.904 |
| 406 | 0.05 | 95.202 | 16.605 | 256.307 | 223.858 |
| 407 | 0.05 | 95.325 | 16.974 | 256.314 | 223.843 |
| 408 | 0.04 | 95.448 | 17.22 | 256.322 | 223.827 |
| 409 | 0.05 | 95.817 | 17.22 | 256.343 | 223.781 |
| 410 | 0.04 | 96.063 | 17.589 | 256.358 | 223.75 |
| 411 | 0.05 | 96.432 | 17.712 | 256.38 | 223.704 |
| 412 | 0.05 | 96.801 | 17.589 | 256.401 | 223.658 |
| 413 | 0.04 | 97.047 | 17.835 | 256.416 | 223.627 |
| 414 | 0.05 | 97.416 | 17.712 | 256.438 | 223.581 |
| 415 | 0.05 | 97.662 | 17.835 | 256.452 | 223.551 |
| 416 | 0.04 | 97.908 | 18.081 | 256.466 | 223.52 |
| 417 | 0.05 | 98.031 | 18.081 | 256.474 | 223.505 |
| 418 | 0.04 | 98.277 | 18.204 | 256.488 | 223.474 |
| 419 | 0.05 | 98.523 | 18.204 | 256.502 | 223.444 |
| 420 | 0.05 | 98.646 | 18.573 | 256.51 | 223.429 |
| 421 | 0.04 | 98.892 | 18.819 | 256.524 | 223.398 |
| 422 | 0.05 | 99.015 | 18.819 | 256.531 | 223.383 |
| 423 | 0.05 | 99.384 | 18.942 | 256.553 | 223.337 |
| 424 | 0.04 | 99.63 | 19.065 | 256.567 | 223.307 |
| 425 | 0.05 | 99.753 | 19.311 | 256.574 | 223.292 |
| 426 | 0.05 | 100.122 | 19.311 | 256.595 | 223.246 |
| 427 | 0.04 | 100.245 | 19.68 | 256.603 | 223.231 |
| 428 | 0.05 | 100.614 | 19.803 | 256.624 | 223.186 |
| 429 | 0.04 | 100.86 | 19.803 | 256.638 | 223.156 |
| 430 | 0.05 | 101.229 | 20.049 | 256.659 | 223.11 |
| 431 | 0.05 | 101.352 | 20.295 | 256.667 | 223.095 |
| 432 | 0.04 | 101.598 | 20.541 | 256.681 | 223.065 |
| 433 | 0.05 | 101.967 | 20.418 | 256.702 | 223.02 |
| 434 | 0.04 | 102.336 | 20.664 | 256.723 | 222.975 |
| 435 | 0.05 | 102.336 | 20.91 | 256.723 | 222.975 |
| 436 | 0.05 | 102.705 | 20.91 | 256.744 | 222.93 |
| 437 | 0.04 | 102.951 | 21.033 | 256.758 | 222.9 |
| 438 | 0.05 | 103.074 | 21.156 | 256.765 | 222.885 |
| 439 | 0.05 | 103.443 | 21.279 | 256.787 | 222.84 |
| 440 | 0.04 | 103.566 | 21.402 | 256.794 | 222.825 |
| 441 | 0.05 | 103.812 | 21.525 | 256.808 | 222.796 |
| 442 | 0.04 | 104.058 | 21.648 | 256.822 | 222.766 |
| 443 | 0.05 | 104.427 | 21.771 | 256.843 | 222.721 |
| 444 | 0.05 | 104.55 | 22.017 | 256.85 | 222.706 |
| 445 | 0.05 | 104.796 | 22.017 | 256.864 | 222.676 |
| 446 | 0.04 | 105.042 | 22.263 | 256.877 | 222.647 |
| 447 | 0.05 | 105.165 | 22.386 | 256.884 | 222.632 |
| 448 | 0.05 | 105.411 | 22.632 | 256.898 | 222.602 |
| 449 | 0.04 | 105.657 | 22.755 | 256.912 | 222.573 |
| 450 | 0.05 | 106.026 | 22.755 | 256.933 | 222.528 |
| 451 | 0.04 | 106.395 | 22.755 | 256.954 | 222.484 |
| 452 | 0.05 | 106.764 | 22.878 | 256.975 | 222.44 |
| 453 | 0.05 | 107.01 | 23.001 | 256.989 | 222.41 |
| 454 | 0.04 | 107.256 | 23.124 | 257.002 | 222.381 |
| 455 | 0.05 | 107.379 | 23.37 | 257.009 | 222.366 |
| 456 | 0.05 | 107.625 | 23.493 | 257.023 | 222.337 |
| 457 | 0.04 | 107.748 | 23.739 | 257.03 | 222.322 |
| 458 | 0.05 | 107.871 | 23.862 | 257.037 | 222.307 |
| 459 | 0.05 | 108.117 | 23.985 | 257.051 | 222.278 |
| 460 | 0.04 | 108.486 | 24.231 | 257.071 | 222.234 |
| 461 | 0.05 | 108.732 | 24.354 | 257.085 | 222.205 |
| 462 | 0.04 | 108.978 | 24.477 | 257.099 | 222.175 |
| 463 | 0.05 | 109.224 | 24.723 | 257.112 | 222.146 |
| 464 | 0.05 | 109.47 | 24.846 | 257.126 | 222.117 |
| 465 | 0.04 | 109.716 | 25.092 | 257.14 | 222.088 |
| 466 | 0.05 | 109.962 | 25.461 | 257.153 | 222.059 |
| 467 | 0.04 | 110.331 | 25.461 | 257.174 | 222.015 |
| 468 | 0.06 | 110.577 | 25.584 | 257.187 | 221.986 |
| 469 | 0.04 | 110.946 | 25.707 | 257.208 | 221.942 |
| 470 | 0.05 | 111.069 | 26.076 | 257.214 | 221.928 |
| 471 | 0.04 | 111.315 | 26.076 | 257.228 | 221.899 |
| 472 | 0.05 | 111.561 | 26.322 | 257.241 | 221.87 |
| 473 | 0.05 | 111.807 | 26.445 | 257.255 | 221.841 |
| 474 | 0.04 | 112.053 | 26.445 | 257.269 | 221.812 |
| 475 | 0.05 | 112.299 | 26.691 | 257.282 | 221.783 |
| 476 | 0.04 | 112.545 | 26.814 | 257.295 | 221.755 |
| 477 | 0.05 | 112.791 | 26.814 | 257.309 | 221.726 |
| 478 | 0.05 | 113.16 | 26.937 | 257.329 | 221.683 |
| 479 | 0.04 | 113.529 | 26.814 | 257.349 | 221.64 |
| 480 | 0.05 | 113.529 | 27.183 | 257.349 | 221.64 |
| 481 | 0.05 | 113.529 | 27.552 | 257.349 | 221.64 |
| 482 | 0.04 | 113.898 | 27.552 | 257.369 | 221.597 |
| 483 | 0.05 | 114.144 | 27.798 | 257.383 | 221.568 |
| 484 | 0.05 | 114.267 | 28.044 | 257.389 | 221.554 |
| 485 | 0.04 | 114.636 | 28.167 | 257.409 | 221.511 |
| 486 | 0.05 | 114.882 | 28.167 | 257.423 | 221.482 |
| 487 | 0.04 | 115.128 | 28.413 | 257.436 | 221.454 |
| 488 | 0.05 | 115.497 | 28.536 | 257.456 | 221.411 |
| 489 | 0.05 | 115.866 | 28.659 | 257.476 | 221.368 |
| 490 | 0.05 | 116.112 | 28.659 | 257.489 | 221.34 |
| 491 | 0.04 | 116.358 | 28.782 | 257.502 | 221.312 |
| 492 | 0.05 | 116.481 | 29.028 | 257.509 | 221.297 |
| 493 | 0.05 | 116.85 | 28.905 | 257.529 | 221.255 |
| 494 | 0.04 | 117.096 | 29.151 | 257.542 | 221.227 |
| 495 | 0.05 | 117.342 | 29.274 | 257.555 | 221.198 |
| 496 | 0.04 | 117.465 | 29.52 | 257.562 | 221.184 |
| 497 | 0.05 | 117.834 | 29.397 | 257.582 | 221.142 |
| 498 | 0.05 | 117.957 | 29.52 | 257.588 | 221.128 |
| 499 | 0.04 | 118.203 | 29.766 | 257.601 | 221.1 |
| 500 | 0.05 | 118.449 | 29.766 | 257.614 | 221.071 |
| 501 | 0.05 | 118.572 | 30.135 | 257.621 | 221.057 |
| 502 | 0.04 | 118.818 | 30.258 | 257.634 | 221.029 |
| 503 | 0.05 | 119.064 | 30.504 | 257.647 | 221.001 |
| 504 | 0.04 | 119.31 | 30.75 | 257.66 | 220.973 |
| 505 | 0.05 | 119.679 | 30.627 | 257.68 | 220.931 |
| 506 | 0.05 | 120.048 | 30.75 | 257.699 | 220.889 |
| 507 | 0.04 | 120.417 | 30.873 | 257.719 | 220.847 |
| 508 | 0.05 | 120.417 | 31.119 | 257.719 | 220.847 |
| 509 | 0.05 | 120.786 | 30.996 | 257.738 | 220.805 |
| 510 | 0.05 | 121.032 | 30.996 | 257.751 | 220.778 |
| 511 | 0.04 | 121.155 | 31.242 | 257.758 | 220.764 |
| 512 | 0.05 | 121.278 | 31.365 | 257.764 | 220.75 |
| 513 | 0.04 | 121.524 | 31.488 | 257.777 | 220.722 |
| 514 | 0.05 | 121.77 | 31.734 | 257.79 | 220.694 |
| 515 | 0.05 | 122.016 | 31.98 | 257.803 | 220.666 |
| 516 | 0.04 | 122.508 | 31.98 | 257.829 | 220.611 |
| 517 | 0.05 | 122.754 | 32.103 | 257.841 | 220.583 |
| 518 | 0.05 | 123.0 | 32.226 | 257.854 | 220.556 |
| 519 | 0.04 | 123.246 | 32.472 | 257.867 | 220.528 |
| 520 | 0.05 | 123.492 | 32.472 | 257.88 | 220.501 |
| 521 | 0.04 | 123.738 | 32.595 | 257.893 | 220.473 |
| 522 | 0.05 | 123.984 | 32.718 | 257.905 | 220.446 |
| 523 | 0.05 | 124.107 | 33.087 | 257.912 | 220.432 |
| 524 | 0.05 | 124.353 | 33.087 | 257.925 | 220.404 |
| 525 | 0.04 | 124.476 | 33.579 | 257.931 | 220.391 |
| 526 | 0.05 | 124.722 | 33.702 | 257.944 | 220.363 |
| 527 | 0.05 | 124.968 | 33.825 | 257.956 | 220.336 |
| 528 | 0.04 | 125.337 | 33.948 | 257.976 | 220.295 |
| 529 | 0.05 | 125.583 | 34.194 | 257.988 | 220.267 |
| 530 | 0.05 | 125.829 | 34.317 | 258.001 | 220.24 |
| 531 | 0.04 | 126.198 | 34.44 | 258.02 | 220.199 |
| 532 | 0.05 | 126.444 | 34.686 | 258.032 | 220.172 |
| 533 | 0.05 | 126.69 | 34.809 | 258.045 | 220.145 |
| 534 | 0.04 | 126.936 | 34.932 | 258.058 | 220.118 |
| 535 | 0.05 | 127.305 | 34.932 | 258.077 | 220.077 |
| 536 | 0.05 | 127.551 | 35.055 | 258.089 | 220.05 |
| 537 | 0.05 | 127.797 | 35.178 | 258.102 | 220.023 |
| 538 | 0.04 | 127.92 | 35.301 | 258.108 | 220.009 |
| 539 | 0.05 | 128.166 | 35.424 | 258.121 | 219.982 |
| 540 | 0.04 | 128.412 | 35.547 | 258.133 | 219.955 |
| 541 | 0.05 | 128.658 | 35.547 | 258.146 | 219.928 |
| 542 | 0.05 | 129.027 | 35.547 | 258.164 | 219.888 |
| 543 | 0.04 | 129.15 | 35.793 | 258.17 | 219.874 |
| 544 | 0.05 | 129.396 | 35.916 | 258.183 | 219.847 |
| 545 | 0.05 | 129.642 | 36.039 | 258.195 | 219.82 |
| 546 | 0.05 | 129.765 | 36.408 | 258.202 | 219.807 |
| 547 | 0.04 | 130.011 | 36.408 | 258.214 | 219.78 |
| 548 | 0.05 | 130.257 | 36.777 | 258.226 | 219.753 |
| 549 | 0.04 | 130.503 | 36.9 | 258.239 | 219.726 |
| 550 | 0.05 | 130.995 | 36.9 | 258.264 | 219.673 |
| 551 | 0.05 | 131.118 | 37.146 | 258.27 | 219.659 |
| 552 | 0.04 | 131.364 | 37.146 | 258.282 | 219.633 |
| 553 | 0.05 | 131.733 | 37.269 | 258.301 | 219.593 |
| 554 | 0.05 | 131.979 | 37.392 | 258.313 | 219.566 |
| 555 | 0.05 | 132.348 | 37.392 | 258.331 | 219.526 |
| 556 | 0.04 | 132.471 | 37.638 | 258.337 | 219.513 |
| 557 | 0.05 | 132.717 | 37.638 | 258.35 | 219.486 |
| 558 | 0.04 | 132.963 | 37.761 | 258.362 | 219.46 |
| 559 | 0.05 | 133.209 | 37.761 | 258.374 | 219.433 |
| 560 | 0.05 | 133.578 | 37.761 | 258.393 | 219.394 |
| 561 | 0.04 | 133.701 | 37.884 | 258.399 | 219.38 |
| 562 | 0.05 | 133.947 | 38.007 | 258.411 | 219.354 |
| 563 | 0.05 | 134.07 | 38.13 | 258.417 | 219.341 |
| 564 | 0.05 | 134.316 | 38.376 | 258.429 | 219.314 |
| 565 | 0.04 | 134.562 | 38.376 | 258.441 | 219.288 |
| 566 | 0.05 | 134.931 | 38.376 | 258.46 | 219.249 |
| 567 | 0.04 | 135.177 | 38.376 | 258.472 | 219.222 |
| 568 | 0.05 | 135.423 | 38.622 | 258.484 | 219.196 |
| 569 | 0.05 | 135.669 | 38.745 | 258.496 | 219.17 |
| 570 | 0.05 | 135.915 | 38.745 | 258.508 | 219.144 |
| 571 | 0.04 | 136.161 | 38.991 | 258.52 | 219.117 |
| 572 | 0.05 | 136.284 | 39.237 | 258.526 | 219.104 |
| 573 | 0.05 | 136.53 | 39.114 | 258.538 | 219.078 |
| 574 | 0.04 | 136.776 | 39.36 | 258.55 | 219.052 |
| 575 | 0.05 | 137.022 | 39.483 | 258.562 | 219.026 |
| 576 | 0.05 | 137.268 | 39.606 | 258.574 | 219.0 |
| 577 | 0.05 | 137.637 | 39.606 | 258.592 | 218.961 |
| 578 | 0.04 | 137.883 | 39.729 | 258.604 | 218.935 |
| 579 | 0.05 | 138.129 | 39.729 | 258.616 | 218.909 |
| 580 | 0.04 | 138.375 | 40.098 | 258.628 | 218.883 |
| 581 | 0.05 | 138.621 | 40.221 | 258.64 | 218.857 |
| 582 | 0.05 | 138.99 | 40.221 | 258.658 | 218.818 |
| 583 | 0.04 | 139.113 | 40.467 | 258.664 | 218.805 |
| 584 | 0.05 | 139.359 | 40.59 | 258.676 | 218.78 |
| 585 | 0.05 | 139.728 | 40.713 | 258.693 | 218.741 |
| 586 | 0.05 | 139.974 | 40.836 | 258.705 | 218.715 |
| 587 | 0.04 | 140.343 | 40.713 | 258.723 | 218.676 |
| 588 | 0.05 | 140.466 | 40.959 | 258.729 | 218.664 |
| 589 | 0.04 | 140.712 | 41.082 | 258.741 | 218.638 |
| 590 | 0.05 | 140.835 | 41.205 | 258.747 | 218.625 |
| 591 | 0.05 | 141.081 | 41.205 | 258.759 | 218.599 |
| 592 | 0.04 | 141.45 | 41.205 | 258.776 | 218.561 |
| 593 | 0.05 | 141.573 | 41.574 | 258.782 | 218.548 |
| 594 | 0.05 | 141.819 | 41.697 | 258.794 | 218.523 |
| 595 | 0.05 | 141.942 | 41.82 | 258.8 | 218.51 |
| 596 | 0.04 | 142.311 | 41.82 | 258.817 | 218.471 |
| 597 | 0.05 | 142.434 | 42.189 | 258.823 | 218.459 |
| 598 | 0.04 | 142.68 | 42.312 | 258.835 | 218.433 |
| 599 | 0.05 | 142.926 | 42.558 | 258.847 | 218.408 |
| 600 | 0.05 | 143.295 | 42.558 | 258.864 | 218.37 |
| 601 | 0.05 | 143.664 | 42.681 | 258.882 | 218.332 |
| 602 | 0.04 | 143.91 | 42.927 | 258.893 | 218.306 |
| 603 | 0.05 | 144.156 | 43.05 | 258.905 | 218.281 |
| 604 | 0.05 | 144.525 | 43.173 | 258.922 | 218.243 |
| 605 | 0.04 | 144.648 | 43.419 | 258.928 | 218.23 |
| 606 | 0.05 | 144.894 | 43.665 | 258.94 | 218.205 |
| 607 | 0.04 | 145.017 | 43.788 | 258.945 | 218.192 |
| 608 | 0.05 | 145.263 | 43.911 | 258.957 | 218.167 |
| 609 | 0.05 | 145.509 | 43.911 | 258.968 | 218.142 |
| 610 | 0.05 | 145.878 | 44.034 | 258.986 | 218.104 |
| 611 | 0.04 | 146.124 | 44.034 | 258.997 | 218.079 |
| 612 | 0.05 | 146.37 | 44.034 | 259.009 | 218.054 |
| 613 | 0.05 | 146.616 | 44.28 | 259.02 | 218.029 |
| 614 | 0.04 | 146.739 | 44.526 | 259.026 | 218.016 |
| 615 | 0.05 | 147.108 | 44.526 | 259.043 | 217.979 |
| 616 | 0.05 | 147.477 | 44.403 | 259.06 | 217.941 |
| 617 | 0.04 | 147.6 | 44.649 | 259.066 | 217.929 |
| 618 | 0.05 | 147.846 | 44.772 | 259.077 | 217.904 |
| 619 | 0.05 | 147.969 | 45.018 | 259.083 | 217.891 |
| 620 | 0.04 | 148.338 | 45.018 | 259.1 | 217.854 |
| 621 | 0.05 | 148.707 | 44.895 | 259.117 | 217.817 |
| 622 | 0.05 | 148.83 | 45.264 | 259.123 | 217.804 |
| 623 | 0.05 | 149.199 | 45.387 | 259.14 | 217.767 |
| 624 | 0.04 | 149.445 | 45.51 | 259.151 | 217.742 |
| 625 | 0.05 | 149.568 | 45.756 | 259.157 | 217.73 |
| 626 | 0.04 | 149.937 | 45.756 | 259.174 | 217.693 |
| 627 | 0.05 | 150.306 | 45.756 | 259.191 | 217.656 |
| 628 | 0.05 | 150.429 | 45.879 | 259.197 | 217.643 |
| 629 | 0.04 | 150.552 | 46.002 | 259.202 | 217.631 |
| 630 | 0.05 | 150.798 | 46.125 | 259.214 | 217.606 |
| 631 | 0.05 | 151.167 | 46.002 | 259.23 | 217.57 |
| 632 | 0.05 | 151.413 | 46.248 | 259.242 | 217.545 |
| 633 | 0.04 | 151.659 | 46.248 | 259.253 | 217.52 |
| 634 | 0.05 | 151.782 | 46.494 | 259.258 | 217.508 |
| 635 | 0.04 | 152.028 | 46.494 | 259.27 | 217.484 |
| 636 | 0.05 | 152.274 | 46.617 | 259.281 | 217.459 |
| 637 | 0.05 | 152.397 | 46.863 | 259.286 | 217.447 |
| 638 | 0.05 | 152.766 | 46.986 | 259.303 | 217.41 |
| 639 | 0.04 | 152.889 | 47.109 | 259.309 | 217.398 |
| 640 | 0.05 | 153.135 | 47.355 | 259.32 | 217.374 |
| 641 | 0.05 | 153.381 | 47.478 | 259.331 | 217.349 |
| 642 | 0.04 | 153.75 | 47.601 | 259.348 | 217.313 |
| 643 | 0.05 | 153.996 | 47.601 | 259.359 | 217.288 |
| 644 | 0.05 | 154.365 | 47.724 | 259.375 | 217.252 |
| 645 | 0.05 | 154.611 | 47.847 | 259.386 | 217.228 |
| 646 | 0.04 | 154.98 | 47.97 | 259.403 | 217.191 |
| 647 | 0.05 | 155.226 | 48.093 | 259.414 | 217.167 |
| 648 | 0.04 | 155.349 | 48.093 | 259.419 | 217.155 |
| 649 | 0.05 | 155.718 | 48.216 | 259.436 | 217.119 |
| 650 | 0.05 | 155.841 | 48.216 | 259.441 | 217.107 |
| 651 | 0.05 | 156.087 | 48.462 | 259.452 | 217.082 |
| 652 | 0.04 | 156.333 | 48.462 | 259.463 | 217.058 |
| 653 | 0.05 | 156.579 | 48.462 | 259.474 | 217.034 |
| 654 | 0.05 | 156.825 | 48.462 | 259.485 | 217.01 |
| 655 | 0.04 | 157.071 | 48.462 | 259.496 | 216.986 |
| 656 | 0.05 | 157.317 | 48.462 | 259.507 | 216.962 |
| 657 | 0.04 | 157.563 | 48.462 | 259.518 | 216.938 |
| 658 | 0.05 | 157.686 | 48.708 | 259.524 | 216.926 |
| 659 | 0.05 | 158.055 | 48.708 | 259.54 | 216.89 |
| 660 | 0.05 | 158.301 | 48.831 | 259.551 | 216.867 |
| 661 | 0.04 | 158.547 | 48.954 | 259.562 | 216.843 |
| 662 | 0.05 | 158.916 | 49.077 | 259.578 | 216.807 |
| 663 | 0.05 | 159.039 | 49.323 | 259.583 | 216.795 |
| 664 | 0.04 | 159.285 | 49.446 | 259.594 | 216.771 |
| 665 | 0.05 | 159.654 | 49.569 | 259.61 | 216.736 |
| 666 | 0.05 | 159.9 | 49.569 | 259.621 | 216.712 |
| 667 | 0.04 | 160.146 | 49.692 | 259.632 | 216.688 |
| 668 | 0.05 | 160.392 | 49.692 | 259.643 | 216.664 |
| 669 | 0.05 | 160.638 | 49.815 | 259.653 | 216.641 |
| 670 | 0.04 | 161.13 | 49.569 | 259.675 | 216.593 |
| 671 | 0.05 | 161.253 | 49.815 | 259.68 | 216.582 |
| 672 | 0.05 | 161.376 | 49.938 | 259.685 | 216.57 |
| 673 | 0.04 | 161.622 | 50.061 | 259.696 | 216.546 |
| 674 | 0.05 | 161.745 | 50.061 | 259.702 | 216.535 |
| 675 | 0.05 | 161.991 | 50.184 | 259.712 | 216.511 |
| 676 | 0.04 | 162.237 | 50.307 | 259.723 | 216.487 |
| 677 | 0.05 | 162.483 | 50.307 | 259.734 | 216.464 |
| 678 | 0.05 | 162.606 | 50.43 | 259.739 | 216.452 |
| 679 | 0.04 | 162.852 | 50.553 | 259.749 | 216.429 |
| 680 | 0.05 | 163.221 | 50.676 | 259.765 | 216.394 |
| 681 | 0.05 | 163.59 | 50.553 | 259.781 | 216.359 |
| 682 | 0.05 | 163.959 | 50.43 | 259.797 | 216.324 |
| 683 | 0.04 | 164.082 | 50.553 | 259.802 | 216.312 |
| 684 | 0.05 | 164.328 | 50.676 | 259.813 | 216.289 |
| 685 | 0.04 | 164.451 | 50.799 | 259.818 | 216.277 |
| 686 | 0.05 | 164.697 | 50.922 | 259.829 | 216.254 |
| 687 | 0.05 | 164.82 | 51.291 | 259.834 | 216.242 |
| 688 | 0.04 | 165.066 | 51.291 | 259.845 | 216.219 |
| 689 | 0.05 | 165.435 | 51.414 | 259.86 | 216.184 |
| 690 | 0.05 | 165.804 | 51.414 | 259.876 | 216.149 |
| 691 | 0.05 | 165.927 | 51.66 | 259.881 | 216.138 |
| 692 | 0.04 | 166.173 | 51.906 | 259.892 | 216.115 |
| 693 | 0.05 | 166.419 | 52.029 | 259.902 | 216.091 |
| 694 | 0.04 | 166.788 | 52.029 | 259.918 | 216.057 |
| 695 | 0.05 | 166.911 | 52.275 | 259.923 | 216.045 |
| 696 | 0.05 | 167.28 | 52.275 | 259.939 | 216.011 |
| 697 | 0.05 | 167.526 | 52.398 | 259.949 | 215.988 |
| 698 | 0.04 | 167.772 | 52.521 | 259.959 | 215.965 |
| 699 | 0.05 | 168.018 | 52.644 | 259.97 | 215.942 |
| 700 | 0.05 | 168.264 | 52.767 | 259.98 | 215.919 |
| 701 | 0.04 | 168.51 | 52.89 | 259.991 | 215.896 |
| 702 | 0.05 | 168.879 | 52.89 | 260.006 | 215.862 |
| 703 | 0.04 | 169.002 | 53.013 | 260.011 | 215.85 |
| 704 | 0.05 | 169.371 | 53.136 | 260.027 | 215.816 |
| 705 | 0.05 | 169.617 | 53.259 | 260.037 | 215.793 |
| 706 | 0.05 | 169.863 | 53.382 | 260.047 | 215.77 |
| 707 | 0.04 | 170.109 | 53.505 | 260.058 | 215.748 |
| 708 | 0.05 | 170.232 | 53.751 | 260.063 | 215.736 |
| 709 | 0.05 | 170.601 | 53.628 | 260.078 | 215.702 |
| 710 | 0.04 | 170.724 | 53.874 | 260.083 | 215.691 |
| 711 | 0.05 | 171.093 | 53.751 | 260.099 | 215.657 |
| 712 | 0.05 | 171.339 | 54.12 | 260.109 | 215.634 |
| 713 | 0.05 | 171.585 | 54.12 | 260.119 | 215.612 |
| 714 | 0.04 | 171.831 | 54.12 | 260.129 | 215.589 |
| 715 | 0.05 | 172.077 | 54.12 | 260.139 | 215.566 |
| 716 | 0.04 | 172.446 | 54.12 | 260.155 | 215.533 |
| 717 | 0.05 | 172.569 | 54.366 | 260.16 | 215.521 |
| 718 | 0.05 | 172.815 | 54.366 | 260.17 | 215.499 |
| 719 | 0.04 | 172.938 | 54.612 | 260.175 | 215.488 |
| 720 | 0.05 | 173.184 | 54.735 | 260.185 | 215.465 |
| 721 | 0.05 | 173.43 | 54.858 | 260.195 | 215.443 |
| 722 | 0.05 | 173.799 | 54.735 | 260.21 | 215.409 |
| 723 | 0.04 | 174.045 | 54.858 | 260.22 | 215.387 |
| 724 | 0.05 | 174.414 | 54.858 | 260.235 | 215.353 |
| 725 | 0.04 | 174.537 | 54.981 | 260.24 | 215.342 |
| 726 | 0.05 | 174.66 | 55.104 | 260.245 | 215.331 |
| 727 | 0.05 | 175.029 | 55.227 | 260.26 | 215.297 |
| 728 | 0.05 | 175.275 | 55.35 | 260.27 | 215.275 |
| 729 | 0.04 | 175.521 | 55.35 | 260.28 | 215.253 |
| 730 | 0.05 | 175.767 | 55.35 | 260.29 | 215.231 |
| 731 | 0.05 | 176.136 | 55.473 | 260.305 | 215.197 |
| 732 | 0.04 | 176.382 | 55.473 | 260.315 | 215.175 |
| 733 | 0.05 | 176.505 | 55.596 | 260.32 | 215.164 |
| 734 | 0.05 | 176.628 | 55.842 | 260.325 | 215.153 |
| 735 | 0.04 | 176.997 | 55.719 | 260.34 | 215.12 |
| 736 | 0.05 | 177.243 | 55.842 | 260.35 | 215.098 |
| 737 | 0.05 | 177.489 | 56.088 | 260.36 | 215.076 |
| 738 | 0.04 | 177.735 | 56.088 | 260.37 | 215.054 |
| 739 | 0.05 | 178.104 | 56.088 | 260.385 | 215.021 |
| 740 | 0.05 | 178.35 | 56.211 | 260.395 | 214.999 |
| 741 | 0.04 | 178.596 | 56.334 | 260.405 | 214.977 |
| 742 | 0.05 | 178.842 | 56.334 | 260.414 | 214.955 |
| 743 | 0.05 | 178.965 | 56.457 | 260.419 | 214.944 |
| 744 | 0.04 | 179.334 | 56.457 | 260.434 | 214.911 |
| 745 | 0.05 | 179.58 | 56.58 | 260.444 | 214.889 |
| 746 | 0.05 | 179.703 | 56.703 | 260.449 | 214.878 |
| 747 | 0.04 | 179.826 | 56.949 | 260.454 | 214.867 |
| 748 | 0.05 | 180.195 | 56.826 | 260.468 | 214.834 |
| 749 | 0.05 | 180.441 | 56.949 | 260.478 | 214.813 |
| 750 | 0.05 | 180.687 | 57.072 | 260.488 | 214.791 |
| 751 | 0.04 | 180.933 | 57.195 | 260.498 | 214.769 |
| 752 | 0.05 | 181.179 | 57.195 | 260.507 | 214.747 |
| 753 | 0.04 | 181.548 | 57.195 | 260.522 | 214.715 |
| 754 | 0.05 | 181.794 | 57.318 | 260.532 | 214.693 |
| 755 | 0.05 | 182.04 | 57.441 | 260.541 | 214.671 |
| 756 | 0.05 | 182.286 | 57.564 | 260.551 | 214.65 |
| 757 | 0.04 | 182.532 | 57.564 | 260.561 | 214.628 |
| 758 | 0.05 | 182.901 | 57.564 | 260.575 | 214.596 |
| 759 | 0.05 | 183.147 | 57.687 | 260.585 | 214.574 |
| 760 | 0.04 | 183.393 | 57.687 | 260.595 | 214.553 |
| 761 | 0.05 | 183.516 | 57.933 | 260.599 | 214.542 |
| 762 | 0.04 | 183.762 | 57.81 | 260.609 | 214.52 |
| 763 | 0.05 | 184.008 | 57.81 | 260.619 | 214.499 |
| 764 | 0.05 | 184.131 | 58.056 | 260.623 | 214.488 |
| 765 | 0.05 | 184.377 | 58.179 | 260.633 | 214.467 |
| 766 | 0.04 | 184.623 | 58.302 | 260.643 | 214.445 |
| 767 | 0.05 | 184.992 | 58.302 | 260.657 | 214.413 |
| 768 | 0.05 | 185.238 | 58.548 | 260.666 | 214.392 |
| 769 | 0.04 | 185.484 | 58.548 | 260.676 | 214.371 |
| 770 | 0.05 | 185.73 | 58.548 | 260.685 | 214.349 |
| 771 | 0.05 | 185.853 | 58.794 | 260.69 | 214.339 |
| 772 | 0.04 | 186.099 | 58.917 | 260.7 | 214.317 |
| 773 | 0.05 | 186.345 | 59.04 | 260.709 | 214.296 |
| 774 | 0.05 | 186.714 | 59.04 | 260.724 | 214.264 |
| 775 | 0.04 | 186.96 | 59.163 | 260.733 | 214.243 |
| 776 | 0.05 | 187.329 | 59.163 | 260.747 | 214.211 |
| 777 | 0.05 | 187.575 | 59.286 | 260.757 | 214.19 |
| 778 | 0.04 | 187.821 | 59.409 | 260.766 | 214.169 |
| 779 | 0.05 | 188.067 | 59.532 | 260.775 | 214.148 |
| 780 | 0.05 | 188.313 | 59.532 | 260.785 | 214.127 |
| 781 | 0.05 | 188.559 | 59.655 | 260.794 | 214.106 |
| 782 | 0.04 | 188.682 | 59.778 | 260.799 | 214.095 |
| 783 | 0.05 | 188.928 | 59.778 | 260.808 | 214.074 |
| 784 | 0.04 | 189.051 | 59.901 | 260.813 | 214.063 |
| 785 | 0.05 | 189.42 | 59.778 | 260.827 | 214.032 |
| 786 | 0.05 | 189.666 | 60.024 | 260.836 | 214.011 |
| 787 | 0.05 | 189.912 | 60.147 | 260.846 | 213.99 |
| 788 | 0.04 | 190.281 | 60.147 | 260.86 | 213.959 |
| 789 | 0.05 | 190.65 | 60.024 | 260.874 | 213.927 |
| 790 | 0.05 | 191.019 | 60.024 | 260.888 | 213.896 |
| 791 | 0.04 | 191.019 | 60.393 | 260.888 | 213.896 |
| 792 | 0.05 | 191.265 | 60.393 | 260.897 | 213.875 |
| 793 | 0.04 | 191.388 | 60.516 | 260.902 | 213.865 |
| 794 | 0.05 | 191.511 | 60.516 | 260.906 | 213.854 |
| 795 | 0.05 | 191.757 | 60.639 | 260.916 | 213.833 |
| 796 | 0.05 | 192.126 | 60.516 | 260.929 | 213.802 |
| 797 | 0.04 | 192.372 | 60.639 | 260.939 | 213.782 |
| 798 | 0.05 | 192.495 | 60.762 | 260.943 | 213.771 |
| 799 | 0.05 | 192.864 | 60.885 | 260.957 | 213.74 |
| 800 | 0.04 | 193.11 | 61.008 | 260.966 | 213.719 |
| 801 | 0.05 | 193.479 | 61.131 | 260.98 | 213.688 |
| 802 | 0.05 | 193.971 | 61.008 | 260.998 | 213.647 |
| 803 | 0.04 | 194.094 | 61.131 | 261.003 | 213.637 |
| 804 | 0.05 | 194.34 | 61.131 | 261.012 | 213.616 |
| 805 | 0.05 | 194.586 | 61.131 | 261.021 | 213.596 |
| 806 | 0.04 | 194.709 | 61.377 | 261.026 | 213.585 |
| 807 | 0.05 | 194.955 | 61.377 | 261.035 | 213.565 |
| 808 | 0.05 | 195.201 | 61.377 | 261.044 | 213.544 |
| 809 | 0.04 | 195.447 | 61.377 | 261.053 | 213.524 |
| 810 | 0.05 | 195.693 | 61.5 | 261.062 | 213.503 |
| 811 | 0.05 | 196.062 | 61.377 | 261.076 | 213.473 |
| 812 | 0.04 | 196.308 | 61.377 | 261.085 | 213.452 |
| 813 | 0.05 | 196.554 | 61.5 | 261.094 | 213.432 |
| 814 | 0.05 | 196.8 | 61.377 | 261.103 | 213.412 |
| 815 | 0.04 | 196.923 | 61.377 | 261.107 | 213.401 |
| 816 | 0.05 | 197.292 | 61.131 | 261.121 | 213.371 |
| 817 | 0.05 | 197.415 | 61.254 | 261.125 | 213.361 |
| 818 | 0.05 | 197.661 | 61.377 | 261.134 | 213.34 |
| 819 | 0.04 | 197.907 | 61.377 | 261.143 | 213.32 |
| 820 | 0.05 | 198.153 | 61.254 | 261.152 | 213.3 |
| 821 | 0.04 | 198.276 | 61.5 | 261.157 | 213.29 |
| 822 | 0.05 | 198.645 | 61.5 | 261.17 | 213.26 |
| 823 | 0.05 | 198.768 | 61.623 | 261.175 | 213.249 |
| 824 | 0.04 | 199.26 | 61.5 | 261.193 | 213.209 |
| 825 | 0.05 | 199.506 | 61.623 | 261.202 | 213.189 |
| 826 | 0.05 | 199.875 | 61.623 | 261.215 | 213.159 |
| 827 | 0.05 | 199.998 | 61.746 | 261.219 | 213.149 |
| 828 | 0.04 | 200.244 | 61.746 | 261.228 | 213.129 |
| 829 | 0.05 | 200.49 | 61.746 | 261.237 | 213.109 |
| 830 | 0.04 | 200.736 | 61.746 | 261.246 | 213.088 |
| 831 | 0.05 | 200.859 | 61.869 | 261.251 | 213.078 |
| 832 | 0.05 | 201.228 | 61.746 | 261.264 | 213.048 |
| 833 | 0.05 | 201.351 | 61.869 | 261.268 | 213.038 |
| 834 | 0.04 | 201.474 | 62.115 | 261.273 | 213.028 |
| 835 | 0.05 | 201.72 | 62.115 | 261.281 | 213.009 |
| 836 | 0.05 | 201.966 | 62.238 | 261.29 | 212.989 |
| 837 | 0.04 | 202.335 | 62.238 | 261.303 | 212.959 |
| 838 | 0.05 | 202.458 | 62.484 | 261.308 | 212.949 |
| 839 | 0.04 | 202.827 | 62.484 | 261.321 | 212.919 |
| 840 | 0.05 | 203.073 | 62.607 | 261.33 | 212.899 |
| 841 | 0.05 | 203.442 | 62.607 | 261.343 | 212.869 |
| 842 | 0.05 | 203.565 | 62.853 | 261.347 | 212.859 |
| 843 | 0.04 | 203.934 | 62.853 | 261.36 | 212.83 |
| 844 | 0.05 | 204.18 | 62.853 | 261.369 | 212.81 |
| 845 | 0.05 | 204.426 | 62.853 | 261.378 | 212.79 |
| 846 | 0.04 | 204.672 | 62.853 | 261.387 | 212.771 |
| 847 | 0.05 | 204.918 | 62.976 | 261.395 | 212.751 |
| 848 | 0.05 | 205.287 | 62.976 | 261.408 | 212.721 |
| 849 | 0.04 | 205.533 | 62.976 | 261.417 | 212.702 |
| 850 | 0.05 | 205.779 | 62.976 | 261.426 | 212.682 |
| 851 | 0.05 | 206.025 | 62.976 | 261.434 | 212.662 |
| 852 | 0.04 | 206.148 | 63.099 | 261.439 | 212.653 |
| 853 | 0.05 | 206.394 | 63.099 | 261.447 | 212.633 |
| 854 | 0.05 | 206.517 | 63.345 | 261.452 | 212.623 |
| 855 | 0.05 | 206.886 | 63.222 | 261.464 | 212.594 |
| 856 | 0.04 | 207.132 | 63.222 | 261.473 | 212.574 |
| 857 | 0.05 | 207.378 | 63.345 | 261.482 | 212.555 |
| 858 | 0.04 | 207.624 | 63.345 | 261.49 | 212.535 |
| 859 | 0.05 | 207.747 | 63.591 | 261.495 | 212.526 |
| 860 | 0.05 | 207.993 | 63.591 | 261.503 | 212.506 |
| 861 | 0.04 | 208.239 | 63.714 | 261.512 | 212.487 |
| 862 | 0.05 | 208.608 | 63.591 | 261.525 | 212.458 |
| 863 | 0.05 | 208.731 | 63.837 | 261.529 | 212.448 |
| 864 | 0.05 | 209.223 | 63.714 | 261.546 | 212.409 |
| 865 | 0.04 | 209.592 | 63.714 | 261.559 | 212.38 |
| 866 | 0.05 | 209.715 | 63.837 | 261.563 | 212.371 |
| 867 | 0.04 | 210.084 | 63.714 | 261.576 | 212.342 |
| 868 | 0.05 | 210.207 | 63.714 | 261.58 | 212.332 |
| 869 | 0.05 | 210.453 | 63.837 | 261.588 | 212.313 |
| 870 | 0.05 | 210.699 | 63.837 | 261.597 | 212.294 |
| 871 | 0.04 | 210.822 | 63.96 | 261.601 | 212.284 |
| 872 | 0.05 | 211.068 | 63.96 | 261.609 | 212.265 |
| 873 | 0.05 | 211.314 | 63.96 | 261.618 | 212.246 |
| 874 | 0.04 | 211.683 | 63.96 | 261.63 | 212.217 |
| 875 | 0.05 | 211.929 | 64.083 | 261.639 | 212.198 |
| 876 | 0.04 | 212.175 | 64.083 | 261.647 | 212.179 |
| 877 | 0.06 | 212.421 | 64.206 | 261.656 | 212.159 |
| 878 | 0.04 | 212.667 | 64.083 | 261.664 | 212.14 |
| 879 | 0.05 | 212.913 | 64.083 | 261.672 | 212.121 |
| 880 | 0.04 | 213.159 | 64.083 | 261.681 | 212.102 |
| 881 | 0.05 | 213.282 | 64.329 | 261.685 | 212.093 |
| 882 | 0.05 | 213.528 | 64.329 | 261.693 | 212.074 |
| 883 | 0.04 | 213.897 | 64.206 | 261.706 | 212.045 |
| 884 | 0.05 | 214.143 | 64.206 | 261.714 | 212.026 |
| 885 | 0.05 | 214.389 | 64.329 | 261.722 | 212.007 |
| 886 | 0.05 | 214.635 | 64.206 | 261.731 | 211.988 |
| 887 | 0.04 | 214.881 | 64.206 | 261.739 | 211.97 |
| 888 | 0.05 | 215.127 | 64.329 | 261.747 | 211.951 |
| 889 | 0.04 | 215.619 | 64.083 | 261.764 | 211.913 |
| 890 | 0.05 | 215.865 | 64.083 | 261.772 | 211.894 |
| 891 | 0.05 | 215.988 | 64.206 | 261.776 | 211.885 |
| 892 | 0.05 | 216.111 | 64.329 | 261.78 | 211.875 |
| 893 | 0.04 | 216.357 | 64.452 | 261.789 | 211.856 |
| 894 | 0.05 | 216.603 | 64.452 | 261.797 | 211.838 |
| 895 | 0.05 | 216.849 | 64.698 | 261.805 | 211.819 |
| 896 | 0.04 | 217.218 | 64.452 | 261.817 | 211.791 |
| 897 | 0.05 | 217.464 | 64.575 | 261.826 | 211.772 |
| 898 | 0.05 | 217.71 | 64.575 | 261.834 | 211.753 |
| 899 | 0.04 | 217.956 | 64.698 | 261.842 | 211.735 |
| 900 | 0.05 | 218.202 | 64.698 | 261.85 | 211.716 |
| 901 | 0.05 | 218.325 | 64.821 | 261.854 | 211.707 |
| 902 | 0.04 | 218.571 | 64.944 | 261.862 | 211.688 |
| 903 | 0.05 | 218.817 | 64.821 | 261.871 | 211.669 |
| 904 | 0.05 | 219.186 | 64.821 | 261.883 | 211.642 |
| 905 | 0.04 | 219.309 | 64.821 | 261.887 | 211.632 |
| 906 | 0.05 | 219.678 | 64.821 | 261.899 | 211.605 |
| 907 | 0.05 | 219.924 | 64.821 | 261.907 | 211.586 |
| 908 | 0.04 | 220.17 | 64.698 | 261.915 | 211.567 |
| 909 | 0.05 | 220.416 | 64.821 | 261.923 | 211.549 |
| 910 | 0.05 | 220.662 | 64.821 | 261.931 | 211.531 |
| 911 | 0.04 | 220.908 | 64.821 | 261.939 | 211.512 |
| 912 | 0.05 | 221.031 | 64.944 | 261.943 | 211.503 |
| 913 | 0.05 | 221.277 | 65.067 | 261.951 | 211.484 |
| 914 | 0.05 | 221.523 | 65.067 | 261.959 | 211.466 |
| 915 | 0.04 | 222.015 | 64.944 | 261.976 | 211.429 |
| 916 | 0.05 | 222.138 | 64.944 | 261.98 | 211.42 |
| 917 | 0.04 | 222.384 | 65.067 | 261.988 | 211.402 |
| 918 | 0.05 | 222.63 | 65.067 | 261.996 | 211.383 |
| 919 | 0.05 | 222.876 | 65.067 | 262.004 | 211.365 |
| 920 | 0.05 | 223.245 | 64.944 | 262.016 | 211.338 |
| 921 | 0.04 | 223.491 | 64.821 | 262.023 | 211.319 |
| 922 | 0.05 | 223.737 | 64.821 | 262.031 | 211.301 |
| 923 | 0.05 | 223.86 | 64.821 | 262.035 | 211.292 |
| 924 | 0.04 | 224.106 | 64.698 | 262.043 | 211.274 |
| 925 | 0.05 | 224.229 | 64.821 | 262.047 | 211.265 |
| 926 | 0.04 | 224.475 | 64.944 | 262.055 | 211.247 |
| 927 | 0.05 | 224.721 | 64.944 | 262.063 | 211.228 |
| 928 | 0.05 | 225.09 | 64.821 | 262.075 | 211.201 |
| 929 | 0.05 | 225.336 | 64.944 | 262.083 | 211.183 |
| 930 | 0.04 | 225.582 | 64.944 | 262.091 | 211.165 |
| 931 | 0.05 | 225.951 | 64.944 | 262.103 | 211.138 |
| 932 | 0.05 | 226.197 | 64.944 | 262.111 | 211.12 |
| 933 | 0.04 | 226.32 | 65.19 | 262.114 | 211.111 |
| 934 | 0.05 | 226.566 | 65.19 | 262.122 | 211.093 |
| 935 | 0.05 | 226.812 | 65.19 | 262.13 | 211.075 |
| 936 | 0.04 | 227.181 | 65.19 | 262.142 | 211.048 |
| 937 | 0.05 | 227.304 | 65.313 | 262.146 | 211.039 |
| 938 | 0.05 | 227.673 | 65.313 | 262.158 | 211.012 |
| 939 | 0.04 | 227.919 | 65.313 | 262.165 | 210.994 |
| 940 | 0.05 | 228.042 | 65.313 | 262.169 | 210.985 |
| 941 | 0.05 | 228.411 | 65.313 | 262.181 | 210.958 |
| 942 | 0.05 | 228.534 | 65.436 | 262.185 | 210.949 |
| 943 | 0.04 | 228.78 | 65.436 | 262.193 | 210.931 |
| 944 | 0.05 | 229.026 | 65.559 | 262.2 | 210.913 |
| 945 | 0.04 | 229.149 | 65.682 | 262.204 | 210.904 |
| 946 | 0.05 | 229.395 | 65.682 | 262.212 | 210.887 |
| 947 | 0.05 | 229.764 | 65.682 | 262.224 | 210.86 |
| 948 | 0.04 | 230.01 | 65.805 | 262.231 | 210.842 |
| 949 | 0.05 | 230.256 | 65.805 | 262.239 | 210.824 |
| 950 | 0.05 | 230.625 | 65.805 | 262.251 | 210.798 |
| 951 | 0.05 | 230.748 | 65.928 | 262.254 | 210.789 |
| 952 | 0.04 | 230.994 | 66.051 | 262.262 | 210.771 |
| 953 | 0.05 | 231.363 | 66.174 | 262.274 | 210.745 |
| 954 | 0.05 | 231.732 | 66.051 | 262.285 | 210.718 |
| 955 | 0.04 | 231.978 | 66.174 | 262.293 | 210.7 |
| 956 | 0.05 | 232.224 | 66.174 | 262.301 | 210.683 |
| 957 | 0.05 | 232.47 | 66.174 | 262.308 | 210.665 |
| 958 | 0.04 | 232.593 | 66.174 | 262.312 | 210.656 |
| 959 | 0.05 | 232.839 | 66.174 | 262.32 | 210.639 |
| 960 | 0.05 | 233.085 | 66.174 | 262.327 | 210.621 |
| 961 | 0.04 | 233.208 | 66.297 | 262.331 | 210.613 |
| 962 | 0.05 | 233.454 | 66.297 | 262.339 | 210.595 |
| 963 | 0.05 | 233.7 | 66.42 | 262.346 | 210.577 |
| 964 | 0.05 | 233.946 | 66.42 | 262.354 | 210.56 |
| 965 | 0.04 | 234.315 | 66.42 | 262.365 | 210.534 |
| 966 | 0.05 | 234.561 | 66.42 | 262.373 | 210.516 |
| 967 | 0.04 | 234.93 | 66.297 | 262.384 | 210.49 |
| 968 | 0.05 | 235.176 | 66.42 | 262.392 | 210.473 |
| 969 | 0.05 | 235.422 | 66.42 | 262.399 | 210.455 |
| 970 | 0.04 | 235.668 | 66.42 | 262.407 | 210.438 |
| 971 | 0.05 | 235.914 | 66.42 | 262.414 | 210.421 |
| 972 | 0.05 | 236.16 | 66.42 | 262.422 | 210.403 |
| 973 | 0.05 | 236.406 | 66.297 | 262.429 | 210.386 |
| 974 | 0.04 | 236.775 | 66.297 | 262.441 | 210.36 |
| 975 | 0.05 | 237.021 | 66.297 | 262.448 | 210.343 |
| 976 | 0.04 | 237.144 | 66.297 | 262.452 | 210.334 |
| 977 | 0.05 | 237.39 | 66.297 | 262.459 | 210.317 |
| 978 | 0.05 | 237.636 | 66.174 | 262.467 | 210.299 |
| 979 | 0.05 | 237.882 | 66.051 | 262.474 | 210.282 |
| 980 | 0.04 | 238.005 | 66.297 | 262.478 | 210.274 |
| 981 | 0.05 | 238.128 | 66.297 | 262.482 | 210.265 |
| 982 | 0.05 | 238.497 | 66.297 | 262.493 | 210.239 |
| 983 | 0.04 | 238.866 | 66.297 | 262.504 | 210.213 |
| 984 | 0.05 | 239.112 | 66.297 | 262.511 | 210.196 |
| 985 | 0.04 | 239.358 | 66.42 | 262.519 | 210.179 |
| 986 | 0.05 | 239.604 | 66.42 | 262.526 | 210.162 |
| 987 | 0.05 | 239.85 | 66.42 | 262.534 | 210.145 |
| 988 | 0.05 | 240.096 | 66.42 | 262.541 | 210.128 |
| 989 | 0.04 | 240.342 | 66.297 | 262.548 | 210.111 |
| 990 | 0.05 | 240.588 | 66.42 | 262.556 | 210.094 |
| 991 | 0.05 | 240.834 | 66.297 | 262.563 | 210.077 |
| 992 | 0.04 | 241.08 | 66.297 | 262.57 | 210.06 |
| 993 | 0.05 | 241.326 | 66.297 | 262.578 | 210.043 |
| 994 | 0.05 | 241.572 | 66.297 | 262.585 | 210.026 |
| 995 | 0.04 | 241.695 | 66.297 | 262.589 | 210.017 |
| 996 | 0.05 | 241.941 | 66.42 | 262.596 | 210.0 |
| 997 | 0.05 | 242.31 | 66.42 | 262.607 | 209.975 |
| 998 | 0.04 | 242.679 | 66.42 | 262.618 | 209.949 |
| 999 | 0.05 | 242.925 | 66.42 | 262.625 | 209.933 |
| 1000 | 0.05 | 243.048 | 66.543 | 262.629 | 209.924 |
| 1001 | 0.05 | 243.417 | 66.543 | 262.64 | 209.899 |
| 1002 | 0.04 | 243.663 | 66.42 | 262.647 | 209.882 |
| 1003 | 0.05 | 243.786 | 66.543 | 262.651 | 209.874 |
| 1004 | 0.04 | 244.032 | 66.543 | 262.658 | 209.857 |
| 1005 | 0.05 | 244.401 | 66.42 | 262.669 | 209.832 |
| 1006 | 0.05 | 244.647 | 66.297 | 262.676 | 209.815 |
| 1007 | 0.04 | 245.016 | 66.174 | 262.687 | 209.79 |
| 1008 | 0.05 | 245.262 | 66.174 | 262.694 | 209.773 |
| 1009 | 0.05 | 245.385 | 66.174 | 262.698 | 209.765 |
| 1010 | 0.05 | 245.631 | 66.174 | 262.705 | 209.748 |
| 1011 | 0.04 | 245.754 | 66.174 | 262.709 | 209.739 |
| 1012 | 0.05 | 245.877 | 66.174 | 262.712 | 209.731 |
| 1013 | 0.05 | 246.123 | 66.174 | 262.719 | 209.714 |
| 1014 | 0.04 | 246.369 | 66.174 | 262.727 | 209.698 |
| 1015 | 0.05 | 246.615 | 66.174 | 262.734 | 209.681 |
| 1016 | 0.05 | 247.107 | 66.051 | 262.748 | 209.648 |
| 1017 | 0.04 | 247.476 | 65.805 | 262.759 | 209.623 |
| 1018 | 0.05 | 247.722 | 65.928 | 262.766 | 209.606 |
| 1019 | 0.05 | 248.091 | 65.805 | 262.777 | 209.582 |
| 1020 | 0.04 | 248.214 | 65.928 | 262.78 | 209.573 |
| 1021 | 0.05 | 248.46 | 65.928 | 262.787 | 209.557 |
| 1022 | 0.05 | 248.583 | 65.805 | 262.791 | 209.549 |
| 1023 | 0.04 | 248.829 | 65.682 | 262.798 | 209.532 |
| 1024 | 0.05 | 249.075 | 65.682 | 262.805 | 209.516 |
| 1025 | 0.05 | 249.321 | 65.682 | 262.812 | 209.499 |
| 1026 | 0.04 | 249.567 | 65.682 | 262.819 | 209.483 |
| 1027 | 0.05 | 249.936 | 65.559 | 262.83 | 209.458 |
| 1028 | 0.05 | 250.059 | 65.682 | 262.833 | 209.45 |
| 1029 | 0.04 | 250.305 | 65.682 | 262.84 | 209.433 |
| 1030 | 0.05 | 250.551 | 65.682 | 262.847 | 209.417 |
| 1031 | 0.05 | 250.797 | 65.682 | 262.854 | 209.401 |
| 1032 | 0.05 | 251.043 | 65.682 | 262.861 | 209.384 |
| 1033 | 0.04 | 251.289 | 65.559 | 262.868 | 209.368 |
| 1034 | 0.05 | 251.535 | 65.682 | 262.875 | 209.352 |
| 1035 | 0.04 | 251.658 | 65.928 | 262.879 | 209.343 |
| 1036 | 0.05 | 252.027 | 65.682 | 262.889 | 209.319 |
| 1037 | 0.05 | 252.273 | 65.682 | 262.897 | 209.303 |
| 1038 | 0.04 | 252.642 | 65.559 | 262.907 | 209.278 |
| 1039 | 0.05 | 252.765 | 65.682 | 262.91 | 209.27 |
| 1040 | 0.05 | 253.011 | 65.559 | 262.917 | 209.254 |
| 1041 | 0.05 | 253.257 | 65.559 | 262.924 | 209.238 |
| 1042 | 0.04 | 253.503 | 65.436 | 262.931 | 209.221 |
| 1043 | 0.05 | 253.626 | 65.559 | 262.935 | 209.213 |
| 1044 | 0.04 | 253.995 | 65.313 | 262.945 | 209.189 |
| 1045 | 0.05 | 254.241 | 65.436 | 262.952 | 209.173 |
| 1046 | 0.05 | 254.61 | 65.313 | 262.963 | 209.149 |
| 1047 | 0.05 | 254.856 | 65.313 | 262.969 | 209.133 |
| 1048 | 0.04 | 255.102 | 65.436 | 262.976 | 209.116 |
| 1049 | 0.05 | 255.225 | 65.559 | 262.98 | 209.108 |
| 1050 | 0.05 | 255.594 | 65.559 | 262.99 | 209.084 |
| 1051 | 0.04 | 255.717 | 65.682 | 262.994 | 209.076 |
| 1052 | 0.05 | 256.086 | 65.559 | 263.004 | 209.052 |
| 1053 | 0.04 | 256.455 | 65.313 | 263.014 | 209.028 |
| 1054 | 0.05 | 256.701 | 65.313 | 263.021 | 209.012 |
| 1055 | 0.05 | 256.824 | 65.436 | 263.025 | 209.004 |
| 1056 | 0.05 | 257.07 | 65.436 | 263.031 | 208.988 |
| 1057 | 0.04 | 257.316 | 65.313 | 263.038 | 208.972 |
| 1058 | 0.05 | 257.439 | 65.436 | 263.042 | 208.964 |
| 1059 | 0.05 | 257.685 | 65.313 | 263.049 | 208.948 |
| 1060 | 0.04 | 257.931 | 65.559 | 263.055 | 208.932 |
| 1061 | 0.05 | 258.177 | 65.559 | 263.062 | 208.916 |
| 1062 | 0.05 | 258.423 | 65.682 | 263.069 | 208.9 |
| 1063 | 0.04 | 258.792 | 65.559 | 263.079 | 208.877 |
| 1064 | 0.05 | 259.038 | 65.559 | 263.086 | 208.861 |
| 1065 | 0.05 | 259.284 | 65.559 | 263.093 | 208.845 |
| 1066 | 0.04 | 259.53 | 65.436 | 263.1 | 208.829 |
| 1067 | 0.05 | 259.776 | 65.313 | 263.106 | 208.813 |
| 1068 | 0.05 | 259.899 | 65.436 | 263.11 | 208.805 |
| 1069 | 0.04 | 260.268 | 65.313 | 263.12 | 208.782 |
| 1070 | 0.05 | 260.637 | 65.19 | 263.13 | 208.758 |
| 1071 | 0.05 | 260.883 | 65.19 | 263.137 | 208.742 |
| 1072 | 0.04 | 261.129 | 65.19 | 263.143 | 208.726 |
| 1073 | 0.05 | 261.375 | 65.313 | 263.15 | 208.711 |
| 1074 | 0.05 | 261.744 | 65.067 | 263.16 | 208.687 |
| 1075 | 0.04 | 261.867 | 65.19 | 263.164 | 208.679 |
| 1076 | 0.05 | 262.113 | 65.067 | 263.17 | 208.664 |
| 1077 | 0.05 | 262.236 | 65.067 | 263.174 | 208.656 |
| 1078 | 0.05 | 262.359 | 65.067 | 263.177 | 208.648 |
| 1079 | 0.04 | 262.728 | 64.944 | 263.187 | 208.624 |
| 1080 | 0.05 | 262.974 | 64.944 | 263.194 | 208.609 |
| 1081 | 0.05 | 263.343 | 64.821 | 263.204 | 208.585 |
| 1082 | 0.04 | 263.589 | 64.698 | 263.21 | 208.57 |
| 1083 | 0.05 | 263.835 | 64.698 | 263.217 | 208.554 |
| 1084 | 0.04 | 263.958 | 64.821 | 263.22 | 208.546 |
| 1085 | 0.05 | 264.204 | 64.698 | 263.227 | 208.531 |
| 1086 | 0.05 | 264.45 | 64.575 | 263.234 | 208.515 |
| 1087 | 0.05 | 264.696 | 64.575 | 263.24 | 208.5 |
| 1088 | 0.04 | 264.819 | 64.698 | 263.244 | 208.492 |
| 1089 | 0.05 | 265.188 | 64.575 | 263.254 | 208.469 |
| 1090 | 0.05 | 265.434 | 64.575 | 263.26 | 208.453 |
| 1091 | 0.04 | 265.803 | 64.452 | 263.27 | 208.43 |
| 1092 | 0.05 | 266.049 | 64.575 | 263.277 | 208.415 |
| 1093 | 0.05 | 266.295 | 64.575 | 263.283 | 208.399 |
| 1094 | 0.04 | 266.541 | 64.575 | 263.29 | 208.384 |
| 1095 | 0.05 | 266.91 | 64.452 | 263.3 | 208.361 |
| 1096 | 0.05 | 267.156 | 64.575 | 263.306 | 208.345 |
| 1097 | 0.04 | 267.279 | 64.575 | 263.31 | 208.338 |
| 1098 | 0.05 | 267.402 | 64.698 | 263.313 | 208.33 |
| 1099 | 0.05 | 267.771 | 64.329 | 263.323 | 208.307 |
| 1100 | 0.05 | 268.017 | 64.206 | 263.329 | 208.292 |
| 1101 | 0.04 | 268.263 | 64.329 | 263.336 | 208.276 |
| 1102 | 0.05 | 268.632 | 64.083 | 263.346 | 208.253 |
| 1103 | 0.04 | 268.755 | 64.206 | 263.349 | 208.246 |
| 1104 | 0.05 | 269.001 | 64.083 | 263.355 | 208.23 |
| 1105 | 0.05 | 269.37 | 63.96 | 263.365 | 208.207 |
| 1106 | 0.04 | 269.493 | 63.96 | 263.368 | 208.2 |
| 1107 | 0.05 | 269.862 | 63.714 | 263.378 | 208.177 |
| 1108 | 0.05 | 269.985 | 63.837 | 263.381 | 208.169 |
| 1109 | 0.05 | 270.231 | 63.714 | 263.388 | 208.154 |
| 1110 | 0.04 | 270.477 | 63.837 | 263.394 | 208.139 |
| 1111 | 0.05 | 270.723 | 63.714 | 263.401 | 208.124 |
| 1112 | 0.04 | 270.969 | 63.591 | 263.407 | 208.109 |
| 1113 | 0.05 | 271.092 | 63.714 | 263.41 | 208.101 |
| 1114 | 0.05 | 271.461 | 63.468 | 263.42 | 208.078 |
| 1115 | 0.04 | 271.584 | 63.714 | 263.423 | 208.071 |
| 1116 | 0.05 | 271.83 | 63.714 | 263.43 | 208.056 |
| 1117 | 0.05 | 272.199 | 63.591 | 263.439 | 208.033 |
| 1118 | 0.05 | 272.445 | 63.591 | 263.446 | 208.018 |
| 1119 | 0.04 | 272.814 | 63.345 | 263.455 | 207.995 |
| 1120 | 0.05 | 273.06 | 63.345 | 263.462 | 207.98 |
| 1121 | 0.04 | 273.306 | 63.345 | 263.468 | 207.965 |
| 1122 | 0.05 | 273.552 | 63.222 | 263.475 | 207.95 |
| 1123 | 0.05 | 273.798 | 63.222 | 263.481 | 207.935 |
| 1124 | 0.05 | 274.044 | 63.345 | 263.487 | 207.92 |
| 1125 | 0.04 | 274.29 | 63.345 | 263.494 | 207.905 |
| 1126 | 0.05 | 274.413 | 63.468 | 263.497 | 207.898 |
| 1127 | 0.05 | 274.782 | 63.345 | 263.507 | 207.875 |
| 1128 | 0.04 | 275.028 | 63.222 | 263.513 | 207.86 |
| 1129 | 0.05 | 275.274 | 63.099 | 263.519 | 207.845 |
| 1130 | 0.05 | 275.52 | 63.099 | 263.526 | 207.83 |
| 1131 | 0.04 | 275.766 | 63.099 | 263.532 | 207.815 |
| 1132 | 0.05 | 276.012 | 62.976 | 263.538 | 207.8 |
| 1133 | 0.05 | 276.135 | 62.976 | 263.541 | 207.793 |
| 1134 | 0.04 | 276.381 | 62.976 | 263.548 | 207.778 |
| 1135 | 0.05 | 276.627 | 62.976 | 263.554 | 207.763 |
| 1136 | 0.05 | 276.873 | 62.853 | 263.56 | 207.748 |
| 1137 | 0.04 | 277.119 | 62.976 | 263.567 | 207.734 |
| 1138 | 0.05 | 277.365 | 62.976 | 263.573 | 207.719 |
| 1139 | 0.05 | 277.734 | 62.73 | 263.582 | 207.697 |
| 1140 | 0.04 | 277.98 | 62.73 | 263.589 | 207.682 |
| 1141 | 0.05 | 278.103 | 62.853 | 263.592 | 207.674 |
| 1142 | 0.05 | 278.349 | 62.73 | 263.598 | 207.66 |
| 1143 | 0.04 | 278.718 | 62.73 | 263.608 | 207.637 |
| 1144 | 0.05 | 278.964 | 62.607 | 263.614 | 207.623 |
| 1145 | 0.05 | 279.21 | 62.73 | 263.62 | 207.608 |
| 1146 | 0.05 | 279.456 | 62.73 | 263.626 | 207.593 |
| 1147 | 0.04 | 279.825 | 62.607 | 263.636 | 207.571 |
| 1148 | 0.05 | 279.948 | 62.73 | 263.639 | 207.564 |
| 1149 | 0.04 | 280.317 | 62.484 | 263.648 | 207.542 |
| 1150 | 0.05 | 280.563 | 62.607 | 263.654 | 207.527 |
| 1151 | 0.05 | 280.686 | 62.607 | 263.658 | 207.52 |
| 1152 | 0.04 | 280.932 | 62.484 | 263.664 | 207.505 |
| 1153 | 0.05 | 281.178 | 62.484 | 263.67 | 207.491 |
| 1154 | 0.05 | 281.301 | 62.484 | 263.673 | 207.483 |
| 1155 | 0.05 | 281.547 | 62.484 | 263.679 | 207.469 |
| 1156 | 0.04 | 281.916 | 62.361 | 263.689 | 207.447 |
| 1157 | 0.05 | 282.162 | 62.361 | 263.695 | 207.432 |
| 1158 | 0.04 | 282.408 | 62.361 | 263.701 | 207.418 |
| 1159 | 0.05 | 282.654 | 62.361 | 263.707 | 207.403 |
| 1160 | 0.05 | 283.146 | 61.992 | 263.719 | 207.374 |
| 1161 | 0.05 | 283.269 | 62.115 | 263.722 | 207.367 |
| 1162 | 0.04 | 283.515 | 61.992 | 263.729 | 207.352 |
| 1163 | 0.05 | 283.761 | 61.869 | 263.735 | 207.338 |
| 1164 | 0.05 | 283.884 | 61.992 | 263.738 | 207.331 |
| 1165 | 0.04 | 284.253 | 61.746 | 263.747 | 207.309 |
| 1166 | 0.05 | 284.499 | 61.746 | 263.753 | 207.295 |
| 1167 | 0.04 | 284.745 | 61.746 | 263.759 | 207.28 |
| 1168 | 0.05 | 284.868 | 61.992 | 263.762 | 207.273 |
| 1169 | 0.05 | 285.114 | 61.992 | 263.768 | 207.258 |
| 1170 | 0.05 | 285.483 | 61.869 | 263.778 | 207.237 |
| 1171 | 0.04 | 285.729 | 61.869 | 263.784 | 207.222 |
| 1172 | 0.05 | 285.975 | 61.746 | 263.79 | 207.208 |
| 1173 | 0.05 | 286.221 | 61.746 | 263.796 | 207.194 |
| 1174 | 0.04 | 286.467 | 61.623 | 263.802 | 207.179 |
| 1175 | 0.05 | 286.59 | 61.746 | 263.805 | 207.172 |
| 1176 | 0.05 | 286.836 | 61.623 | 263.811 | 207.158 |
| 1177 | 0.05 | 287.082 | 61.5 | 263.817 | 207.144 |
| 1178 | 0.04 | 287.205 | 61.5 | 263.82 | 207.136 |
| 1179 | 0.05 | 287.574 | 61.5 | 263.829 | 207.115 |
| 1180 | 0.04 | 287.82 | 61.5 | 263.835 | 207.101 |
| 1181 | 0.05 | 288.066 | 61.377 | 263.841 | 207.086 |
| 1182 | 0.05 | 288.312 | 61.377 | 263.847 | 207.072 |
| 1183 | 0.04 | 288.558 | 61.377 | 263.853 | 207.058 |
| 1184 | 0.05 | 288.927 | 61.254 | 263.863 | 207.037 |
| 1185 | 0.05 | 289.173 | 61.131 | 263.869 | 207.022 |
| 1186 | 0.05 | 289.419 | 61.008 | 263.875 | 207.008 |
| 1187 | 0.04 | 289.788 | 60.885 | 263.884 | 206.987 |
| 1188 | 0.05 | 289.911 | 61.008 | 263.887 | 206.98 |
| 1189 | 0.04 | 290.28 | 60.762 | 263.896 | 206.958 |
| 1190 | 0.05 | 290.526 | 60.639 | 263.902 | 206.944 |
| 1191 | 0.05 | 290.649 | 60.762 | 263.905 | 206.937 |
| 1192 | 0.04 | 290.895 | 60.639 | 263.911 | 206.923 |
| 1193 | 0.05 | 291.141 | 60.639 | 263.917 | 206.909 |
| 1194 | 0.05 | 291.387 | 60.639 | 263.923 | 206.895 |
| 1195 | 0.05 | 291.633 | 60.639 | 263.928 | 206.881 |
| 1196 | 0.04 | 291.879 | 60.516 | 263.934 | 206.867 |
| 1197 | 0.05 | 292.002 | 60.516 | 263.937 | 206.86 |
| 1198 | 0.04 | 292.371 | 60.27 | 263.946 | 206.839 |
| 1199 | 0.05 | 292.617 | 60.27 | 263.952 | 206.824 |
| 1200 | 0.05 | 292.986 | 60.024 | 263.961 | 206.803 |
| 1201 | 0.04 | 293.232 | 60.024 | 263.967 | 206.789 |
| 1202 | 0.05 | 293.355 | 59.901 | 263.97 | 206.782 |
| 1203 | 0.05 | 293.724 | 59.778 | 263.979 | 206.761 |
| 1204 | 0.05 | 294.093 | 59.532 | 263.988 | 206.74 |
| 1205 | 0.04 | 294.216 | 59.655 | 263.991 | 206.733 |
| 1206 | 0.05 | 294.585 | 59.409 | 264.0 | 206.712 |
| 1207 | 0.04 | 294.831 | 59.163 | 264.006 | 206.699 |
| 1208 | 0.05 | 295.077 | 59.04 | 264.012 | 206.685 |
| 1209 | 0.05 | 295.323 | 58.917 | 264.017 | 206.671 |
| 1210 | 0.04 | 295.446 | 58.917 | 264.02 | 206.664 |
| 1211 | 0.05 | 295.692 | 58.794 | 264.026 | 206.65 |
| 1212 | 0.05 | 295.938 | 58.794 | 264.032 | 206.636 |
| 1213 | 0.04 | 296.184 | 58.794 | 264.038 | 206.622 |
| 1214 | 0.05 | 296.43 | 58.671 | 264.044 | 206.608 |
| 1215 | 0.05 | 296.676 | 58.671 | 264.05 | 206.594 |
| 1216 | 0.04 | 296.922 | 58.671 | 264.056 | 206.58 |
| 1217 | 0.05 | 297.168 | 58.671 | 264.061 | 206.567 |
| 1218 | 0.05 | 297.414 | 58.425 | 264.067 | 206.553 |
| 1219 | 0.04 | 297.783 | 58.302 | 264.076 | 206.532 |
| 1220 | 0.05 | 298.029 | 58.179 | 264.082 | 206.518 |
| 1221 | 0.05 | 298.275 | 58.179 | 264.088 | 206.504 |
| 1222 | 0.04 | 298.398 | 58.179 | 264.091 | 206.498 |
| 1223 | 0.05 | 298.767 | 58.056 | 264.099 | 206.477 |
| 1224 | 0.04 | 298.89 | 58.056 | 264.102 | 206.47 |
| 1225 | 0.05 | 299.136 | 58.056 | 264.108 | 206.456 |
| 1226 | 0.05 | 299.382 | 57.933 | 264.114 | 206.443 |
| 1227 | 0.05 | 299.751 | 57.81 | 264.123 | 206.422 |
| 1228 | 0.04 | 299.874 | 57.687 | 264.126 | 206.415 |
| 1229 | 0.05 | 300.12 | 57.687 | 264.131 | 206.401 |
| 1230 | 0.05 | 300.366 | 57.564 | 264.137 | 206.388 |
| 1231 | 0.04 | 300.612 | 57.441 | 264.143 | 206.374 |
| 1232 | 0.05 | 300.981 | 57.195 | 264.152 | 206.354 |
| 1233 | 0.04 | 301.227 | 57.072 | 264.157 | 206.34 |
| 1234 | 0.05 | 301.473 | 56.949 | 264.163 | 206.326 |
| 1235 | 0.05 | 301.719 | 56.826 | 264.169 | 206.313 |
| 1236 | 0.05 | 301.965 | 56.703 | 264.175 | 206.299 |
| 1237 | 0.04 | 302.211 | 56.58 | 264.18 | 206.285 |
| 1238 | 0.05 | 302.457 | 56.457 | 264.186 | 206.272 |
| 1239 | 0.05 | 302.58 | 56.334 | 264.189 | 206.265 |
| 1240 | 0.04 | 302.826 | 56.088 | 264.195 | 206.251 |
| 1241 | 0.05 | 303.072 | 55.965 | 264.2 | 206.238 |
| 1242 | 0.05 | 303.195 | 55.965 | 264.203 | 206.231 |
| 1243 | 0.04 | 303.564 | 55.596 | 264.212 | 206.211 |
| 1244 | 0.05 | 303.81 | 55.596 | 264.218 | 206.197 |
| 1245 | 0.05 | 304.179 | 55.473 | 264.226 | 206.177 |
| 1246 | 0.04 | 304.425 | 55.35 | 264.232 | 206.163 |
| 1247 | 0.05 | 304.794 | 55.104 | 264.241 | 206.143 |
| 1248 | 0.05 | 305.04 | 54.981 | 264.246 | 206.13 |
| 1249 | 0.04 | 305.286 | 54.981 | 264.252 | 206.116 |
| 1250 | 0.05 | 305.532 | 54.735 | 264.258 | 206.103 |
| 1251 | 0.05 | 305.778 | 54.612 | 264.263 | 206.089 |
| 1252 | 0.04 | 306.024 | 54.489 | 264.269 | 206.076 |
| 1253 | 0.05 | 306.27 | 54.366 | 264.275 | 206.062 |
| 1254 | 0.04 | 306.516 | 54.12 | 264.28 | 206.049 |
| 1255 | 0.05 | 306.762 | 53.997 | 264.286 | 206.035 |
| 1256 | 0.05 | 307.008 | 53.751 | 264.292 | 206.022 |
| 1257 | 0.05 | 307.377 | 53.505 | 264.3 | 206.002 |
| 1258 | 0.04 | 307.623 | 53.382 | 264.306 | 205.989 |
| 1259 | 0.05 | 307.746 | 53.259 | 264.309 | 205.982 |
| 1260 | 0.05 | 307.992 | 53.136 | 264.314 | 205.969 |
| 1261 | 0.04 | 308.238 | 53.013 | 264.32 | 205.955 |
| 1262 | 0.05 | 308.361 | 53.013 | 264.323 | 205.948 |
| 1263 | 0.04 | 308.607 | 52.89 | 264.328 | 205.935 |
| 1264 | 0.05 | 308.853 | 52.89 | 264.334 | 205.922 |
| 1265 | 0.05 | 309.099 | 52.89 | 264.34 | 205.909 |
| 1266 | 0.04 | 309.468 | 52.644 | 264.348 | 205.889 |
| 1267 | 0.05 | 309.837 | 52.398 | 264.356 | 205.869 |
| 1268 | 0.05 | 310.083 | 52.398 | 264.362 | 205.855 |
| 1269 | 0.05 | 310.329 | 52.275 | 264.368 | 205.842 |
| 1270 | 0.04 | 310.575 | 52.029 | 264.373 | 205.829 |
| 1271 | 0.05 | 310.944 | 51.66 | 264.382 | 205.809 |
| 1272 | 0.04 | 311.067 | 51.537 | 264.384 | 205.802 |
| 1273 | 0.05 | 311.19 | 51.537 | 264.387 | 205.796 |
| 1274 | 0.05 | 311.559 | 51.168 | 264.396 | 205.776 |
| 1275 | 0.04 | 311.805 | 51.045 | 264.401 | 205.763 |
| 1276 | 0.05 | 312.051 | 50.799 | 264.407 | 205.749 |
| 1277 | 0.05 | 312.297 | 50.553 | 264.412 | 205.736 |
| 1278 | 0.05 | 312.543 | 50.43 | 264.418 | 205.723 |
| 1279 | 0.04 | 312.789 | 50.061 | 264.424 | 205.71 |
| 1280 | 0.05 | 313.158 | 49.815 | 264.432 | 205.69 |
| 1281 | 0.04 | 313.404 | 49.446 | 264.437 | 205.677 |
| 1282 | 0.05 | 313.527 | 49.323 | 264.44 | 205.67 |
| 1283 | 0.05 | 313.773 | 48.954 | 264.446 | 205.657 |
| 1284 | 0.04 | 314.019 | 48.708 | 264.451 | 205.644 |
| 1285 | 0.05 | 314.142 | 48.585 | 264.454 | 205.638 |
| 1286 | 0.05 | 314.388 | 48.339 | 264.46 | 205.625 |
| 1287 | 0.04 | 314.634 | 48.093 | 264.465 | 205.611 |
| 1288 | 0.05 | 314.88 | 47.847 | 264.471 | 205.598 |
| 1289 | 0.05 | 315.126 | 47.601 | 264.476 | 205.585 |
| 1290 | 0.04 | 315.495 | 47.109 | 264.484 | 205.566 |
| 1291 | 0.05 | 315.741 | 46.863 | 264.49 | 205.553 |
| 1292 | 0.05 | 315.987 | 46.494 | 264.495 | 205.54 |
| 1293 | 0.04 | 316.233 | 46.248 | 264.501 | 205.527 |
| 1294 | 0.05 | 316.356 | 46.125 | 264.504 | 205.52 |
| 1295 | 0.05 | 316.602 | 45.879 | 264.509 | 205.507 |
| 1296 | 0.04 | 316.971 | 45.633 | 264.517 | 205.488 |
| 1297 | 0.05 | 317.094 | 45.51 | 264.52 | 205.481 |
| 1298 | 0.04 | 317.34 | 45.387 | 264.526 | 205.468 |
| 1299 | 0.05 | 317.586 | 45.264 | 264.531 | 205.455 |
| 1300 | 0.05 | 317.832 | 45.018 | 264.537 | 205.442 |
| 1301 | 0.05 | 318.078 | 45.018 | 264.542 | 205.429 |
| 1302 | 0.04 | 318.324 | 44.772 | 264.548 | 205.416 |
| 1303 | 0.05 | 318.693 | 44.526 | 264.556 | 205.397 |
| 1304 | 0.05 | 318.816 | 44.403 | 264.559 | 205.39 |
| 1305 | 0.04 | 319.185 | 44.157 | 264.567 | 205.371 |
| 1306 | 0.05 | 319.431 | 43.911 | 264.572 | 205.358 |
| 1307 | 0.04 | 319.554 | 43.788 | 264.575 | 205.352 |
| 1308 | 0.05 | 319.923 | 43.419 | 264.583 | 205.332 |
| 1309 | 0.05 | 320.169 | 43.296 | 264.589 | 205.319 |
| 1310 | 0.04 | 320.415 | 43.173 | 264.594 | 205.306 |
| 1311 | 0.05 | 320.661 | 42.927 | 264.599 | 205.294 |
| 1312 | 0.05 | 320.907 | 42.804 | 264.605 | 205.281 |
| 1313 | 0.05 | 321.276 | 42.435 | 264.613 | 205.261 |
| 1314 | 0.04 | 321.399 | 42.312 | 264.616 | 205.255 |
| 1315 | 0.05 | 321.645 | 42.066 | 264.621 | 205.242 |
| 1316 | 0.04 | 322.014 | 41.574 | 264.629 | 205.223 |
| 1317 | 0.05 | 322.137 | 41.451 | 264.632 | 205.217 |
| 1318 | 0.05 | 322.383 | 41.205 | 264.637 | 205.204 |
| 1319 | 0.04 | 322.629 | 41.082 | 264.643 | 205.191 |
| 1320 | 0.05 | 322.998 | 40.713 | 264.651 | 205.172 |
| 1321 | 0.05 | 323.121 | 40.59 | 264.654 | 205.165 |
| 1322 | 0.04 | 323.49 | 40.221 | 264.662 | 205.146 |
| 1323 | 0.05 | 323.736 | 39.975 | 264.667 | 205.134 |
| 1324 | 0.05 | 323.859 | 39.852 | 264.67 | 205.127 |
| 1325 | 0.04 | 324.228 | 39.483 | 264.678 | 205.108 |
| 1326 | 0.05 | 324.474 | 39.237 | 264.683 | 205.095 |
| 1327 | 0.05 | 324.597 | 39.114 | 264.686 | 205.089 |
| 1328 | 0.04 | 324.72 | 38.991 | 264.689 | 205.083 |
| 1329 | 0.05 | 324.966 | 38.745 | 264.694 | 205.07 |
| 1330 | 0.05 | 325.212 | 38.622 | 264.699 | 205.057 |
| 1331 | 0.04 | 325.458 | 38.376 | 264.705 | 205.045 |
| 1332 | 0.05 | 325.827 | 37.884 | 264.713 | 205.025 |
| 1333 | 0.04 | 326.196 | 37.638 | 264.721 | 205.006 |
| 1334 | 0.05 | 326.565 | 37.269 | 264.729 | 204.988 |
| 1335 | 0.05 | 326.811 | 37.023 | 264.734 | 204.975 |
| 1336 | 0.05 | 326.934 | 36.777 | 264.737 | 204.969 |
| 1337 | 0.04 | 327.18 | 36.531 | 264.742 | 204.956 |
| 1338 | 0.05 | 327.426 | 36.285 | 264.748 | 204.943 |
| 1339 | 0.05 | 327.672 | 35.793 | 264.753 | 204.931 |
| 1340 | 0.04 | 327.918 | 35.547 | 264.758 | 204.918 |
| 1341 | 0.05 | 328.164 | 35.301 | 264.764 | 204.905 |
| 1342 | 0.04 | 328.41 | 35.178 | 264.769 | 204.893 |
| 1343 | 0.05 | 328.656 | 34.809 | 264.774 | 204.88 |
| 1344 | 0.05 | 328.902 | 34.686 | 264.78 | 204.868 |
| 1345 | 0.05 | 329.271 | 34.44 | 264.788 | 204.849 |
| 1346 | 0.04 | 329.394 | 34.194 | 264.79 | 204.843 |
| 1347 | 0.05 | 329.64 | 33.948 | 264.796 | 204.83 |
| 1348 | 0.05 | 329.886 | 33.702 | 264.801 | 204.818 |
| 1349 | 0.04 | 330.132 | 33.456 | 264.806 | 204.805 |
| 1350 | 0.05 | 330.501 | 32.964 | 264.814 | 204.786 |
| 1351 | 0.04 | 330.624 | 32.841 | 264.817 | 204.78 |
| 1352 | 0.05 | 330.87 | 32.595 | 264.822 | 204.767 |
| 1353 | 0.05 | 331.116 | 32.349 | 264.827 | 204.755 |
| 1354 | 0.04 | 331.485 | 31.98 | 264.835 | 204.736 |
| 1355 | 0.05 | 331.608 | 31.857 | 264.838 | 204.73 |
| 1356 | 0.05 | 331.854 | 31.488 | 264.843 | 204.717 |
| 1357 | 0.05 | 332.223 | 31.242 | 264.851 | 204.699 |
| 1358 | 0.04 | 332.469 | 30.996 | 264.856 | 204.686 |
| 1359 | 0.05 | 332.715 | 30.75 | 264.862 | 204.674 |
| 1360 | 0.04 | 332.961 | 30.504 | 264.867 | 204.661 |
| 1361 | 0.05 | 333.207 | 30.258 | 264.872 | 204.649 |
| 1362 | 0.05 | 333.453 | 30.135 | 264.878 | 204.637 |
| 1363 | 0.04 | 333.699 | 29.889 | 264.883 | 204.624 |
| 1364 | 0.05 | 333.945 | 29.643 | 264.888 | 204.612 |
| 1365 | 0.05 | 334.191 | 29.397 | 264.893 | 204.599 |
| 1366 | 0.04 | 334.437 | 29.151 | 264.899 | 204.587 |
| 1367 | 0.05 | 334.683 | 28.905 | 264.904 | 204.575 |
| 1368 | 0.05 | 335.052 | 28.659 | 264.912 | 204.556 |
| 1369 | 0.05 | 335.298 | 28.29 | 264.917 | 204.544 |
| 1370 | 0.04 | 335.421 | 28.167 | 264.92 | 204.537 |
| 1371 | 0.05 | 335.667 | 27.921 | 264.925 | 204.525 |
| 1372 | 0.04 | 335.667 | 27.798 | 264.925 | 204.525 |
| 1373 | 0.05 | 336.036 | 27.552 | 264.933 | 204.507 |
| 1374 | 0.05 | 336.159 | 27.429 | 264.935 | 204.5 |
| 1375 | 0.04 | 336.405 | 27.183 | 264.941 | 204.488 |
| 1376 | 0.05 | 336.651 | 26.937 | 264.946 | 204.476 |
| 1377 | 0.05 | 336.897 | 26.814 | 264.951 | 204.463 |
| 1378 | 0.04 | 337.266 | 26.568 | 264.959 | 204.445 |
| 1379 | 0.05 | 337.635 | 26.322 | 264.967 | 204.427 |
| 1380 | 0.05 | 337.881 | 26.076 | 264.972 | 204.414 |
| 1381 | 0.04 | 338.127 | 25.83 | 264.977 | 204.402 |
| 1382 | 0.05 | 338.496 | 25.461 | 264.985 | 204.384 |
| 1383 | 0.05 | 338.619 | 25.092 | 264.987 | 204.377 |
| 1384 | 0.04 | 338.742 | 24.969 | 264.99 | 204.371 |
| 1385 | 0.05 | 338.988 | 24.723 | 264.995 | 204.359 |
| 1386 | 0.05 | 339.111 | 24.6 | 264.998 | 204.353 |
| 1387 | 0.04 | 339.357 | 24.354 | 265.003 | 204.341 |
| 1388 | 0.05 | 339.726 | 23.985 | 265.011 | 204.322 |
| 1389 | 0.04 | 339.972 | 23.985 | 265.016 | 204.31 |
| 1390 | 0.05 | 340.218 | 23.739 | 265.021 | 204.298 |
| 1391 | 0.05 | 340.464 | 23.493 | 265.026 | 204.286 |
| 1392 | 0.05 | 340.833 | 23.247 | 265.034 | 204.267 |
| 1393 | 0.04 | 341.079 | 23.001 | 265.039 | 204.255 |
| 1394 | 0.05 | 341.325 | 22.755 | 265.045 | 204.243 |
| 1395 | 0.05 | 341.448 | 22.632 | 265.047 | 204.237 |
| 1396 | 0.04 | 341.817 | 22.386 | 265.055 | 204.219 |
| 1397 | 0.05 | 341.94 | 22.263 | 265.057 | 204.213 |
| 1398 | 0.04 | 342.186 | 22.017 | 265.063 | 204.2 |
| 1399 | 0.05 | 342.432 | 21.771 | 265.068 | 204.188 |
| 1400 | 0.05 | 342.678 | 21.648 | 265.073 | 204.176 |
| 1401 | 0.04 | 342.924 | 21.402 | 265.078 | 204.164 |
| 1402 | 0.05 | 343.17 | 21.402 | 265.083 | 204.152 |
| 1403 | 0.05 | 343.539 | 21.033 | 265.091 | 204.134 |
| 1404 | 0.05 | 343.785 | 20.787 | 265.096 | 204.122 |
| 1405 | 0.04 | 343.908 | 20.787 | 265.099 | 204.116 |
| 1406 | 0.05 | 344.154 | 20.664 | 265.104 | 204.103 |
| 1407 | 0.04 | 344.4 | 20.541 | 265.109 | 204.091 |
| 1408 | 0.05 | 344.769 | 20.295 | 265.117 | 204.073 |
| 1409 | 0.05 | 345.015 | 20.049 | 265.122 | 204.061 |
| 1410 | 0.04 | 345.261 | 19.803 | 265.127 | 204.049 |
| 1411 | 0.05 | 345.384 | 19.803 | 265.13 | 204.043 |
| 1412 | 0.05 | 345.753 | 19.434 | 265.137 | 204.025 |
| 1413 | 0.04 | 345.999 | 19.188 | 265.142 | 204.013 |
| 1414 | 0.05 | 346.245 | 18.819 | 265.148 | 204.001 |
| 1415 | 0.05 | 346.368 | 18.696 | 265.15 | 203.995 |
| 1416 | 0.04 | 346.614 | 18.45 | 265.155 | 203.983 |
| 1417 | 0.05 | 346.86 | 17.958 | 265.16 | 203.971 |
| 1418 | 0.05 | 347.106 | 17.712 | 265.166 | 203.959 |
| 1419 | 0.04 | 347.352 | 17.466 | 265.171 | 203.947 |
| 1420 | 0.05 | 347.475 | 17.466 | 265.173 | 203.941 |
| 1421 | 0.05 | 347.721 | 17.22 | 265.178 | 203.929 |
| 1422 | 0.04 | 348.09 | 16.851 | 265.186 | 203.911 |
| 1423 | 0.05 | 348.336 | 16.728 | 265.191 | 203.899 |
| 1424 | 0.04 | 348.705 | 16.482 | 265.199 | 203.881 |
| 1425 | 0.05 | 348.828 | 16.359 | 265.201 | 203.875 |
| 1426 | 0.05 | 349.197 | 16.113 | 265.209 | 203.857 |
| 1427 | 0.05 | 349.32 | 16.113 | 265.212 | 203.851 |
| 1428 | 0.04 | 349.566 | 15.744 | 265.217 | 203.839 |
| 1429 | 0.05 | 349.812 | 15.621 | 265.222 | 203.827 |
| 1430 | 0.05 | 350.058 | 15.621 | 265.227 | 203.815 |
| 1431 | 0.04 | 350.304 | 15.375 | 265.232 | 203.803 |
| 1432 | 0.05 | 350.673 | 15.006 | 265.24 | 203.785 |
| 1433 | 0.04 | 350.919 | 14.76 | 265.245 | 203.773 |
| 1434 | 0.05 | 351.042 | 14.76 | 265.247 | 203.767 |
| 1435 | 0.05 | 351.288 | 14.637 | 265.252 | 203.755 |
| 1436 | 0.05 | 351.411 | 14.391 | 265.255 | 203.749 |
| 1437 | 0.04 | 351.78 | 14.145 | 265.262 | 203.732 |
| 1438 | 0.05 | 351.903 | 14.022 | 265.265 | 203.726 |
| 1439 | 0.05 | 352.149 | 13.899 | 265.27 | 203.714 |
| 1440 | 0.04 | 352.395 | 13.899 | 265.275 | 203.702 |
| 1441 | 0.05 | 352.641 | 13.776 | 265.28 | 203.69 |
| 1442 | 0.04 | 353.01 | 13.653 | 265.288 | 203.672 |
| 1443 | 0.05 | 353.256 | 13.53 | 265.293 | 203.66 |
| 1444 | 0.05 | 353.625 | 13.284 | 265.301 | 203.643 |
| 1445 | 0.04 | 353.871 | 13.407 | 265.306 | 203.631 |
| 1446 | 0.05 | 354.24 | 13.038 | 265.313 | 203.613 |
| 1447 | 0.05 | 354.486 | 12.915 | 265.318 | 203.601 |
| 1448 | 0.05 | 354.609 | 12.915 | 265.321 | 203.595 |
| 1449 | 0.04 | 354.855 | 12.669 | 265.326 | 203.583 |
| 1450 | 0.05 | 354.978 | 12.669 | 265.328 | 203.577 |
| 1451 | 0.04 | 355.224 | 12.423 | 265.333 | 203.566 |
| 1452 | 0.05 | 355.47 | 12.3 | 265.338 | 203.554 |
| 1453 | 0.05 | 355.716 | 12.3 | 265.344 | 203.542 |
| 1454 | 0.04 | 355.962 | 12.177 | 265.349 | 203.53 |
| 1455 | 0.05 | 356.208 | 12.054 | 265.354 | 203.518 |
| 1456 | 0.05 | 356.454 | 11.808 | 265.359 | 203.507 |
| 1457 | 0.04 | 356.7 | 11.808 | 265.364 | 203.495 |
| 1458 | 0.05 | 356.946 | 11.562 | 265.369 | 203.483 |
| 1459 | 0.05 | 357.069 | 11.685 | 265.371 | 203.477 |
| 1460 | 0.04 | 357.438 | 11.316 | 265.379 | 203.46 |
| 1461 | 0.05 | 357.561 | 11.193 | 265.381 | 203.454 |
| 1462 | 0.04 | 358.053 | 10.824 | 265.391 | 203.43 |
| 1463 | 0.05 | 358.176 | 10.701 | 265.394 | 203.424 |
| 1464 | 0.05 | 358.545 | 10.578 | 265.401 | 203.407 |
| 1465 | 0.04 | 358.791 | 10.455 | 265.407 | 203.395 |
| 1466 | 0.05 | 358.914 | 10.455 | 265.409 | 203.389 |
| 1467 | 0.05 | 359.16 | 10.455 | 265.414 | 203.377 |
| 1468 | 0.05 | 359.406 | 10.332 | 265.419 | 203.366 |
| 1469 | 0.04 | 359.775 | 9.963 | 265.427 | 203.348 |
| 1470 | 0.05 | 359.898 | 9.963 | 265.429 | 203.342 |
| 1471 | 0.04 | 360.144 | 9.963 | 265.434 | 203.331 |
| 1472 | 0.05 | 360.39 | 9.717 | 265.439 | 203.319 |
| 1473 | 0.05 | 360.636 | 9.717 | 265.444 | 203.307 |
| 1474 | 0.04 | 360.882 | 9.471 | 265.449 | 203.295 |
| 1475 | 0.05 | 361.128 | 9.348 | 265.454 | 203.284 |
| 1476 | 0.04 | 361.374 | 9.348 | 265.459 | 203.272 |
| 1477 | 0.05 | 361.743 | 9.102 | 265.467 | 203.255 |
| 1478 | 0.05 | 361.989 | 8.979 | 265.472 | 203.243 |
| 1479 | 0.04 | 362.235 | 8.733 | 265.477 | 203.231 |
| 1480 | 0.05 | 362.481 | 8.487 | 265.482 | 203.22 |
| 1481 | 0.05 | 362.727 | 8.241 | 265.487 | 203.208 |
| 1482 | 0.04 | 362.85 | 8.241 | 265.489 | 203.202 |
| 1483 | 0.05 | 363.219 | 7.995 | 265.497 | 203.185 |
| 1484 | 0.05 | 363.342 | 7.995 | 265.499 | 203.179 |
| 1485 | 0.04 | 363.588 | 7.995 | 265.504 | 203.167 |
| 1486 | 0.05 | 363.834 | 7.749 | 265.509 | 203.156 |
| 1487 | 0.04 | 364.08 | 7.626 | 265.514 | 203.144 |
| 1488 | 0.05 | 364.326 | 7.503 | 265.519 | 203.132 |
| 1489 | 0.05 | 364.695 | 7.38 | 265.527 | 203.115 |
| 1490 | 0.04 | 364.818 | 7.38 | 265.529 | 203.109 |
| 1491 | 0.05 | 365.064 | 7.257 | 265.534 | 203.098 |
| 1492 | 0.05 | 365.31 | 7.134 | 265.539 | 203.086 |
| 1493 | 0.04 | 365.556 | 7.134 | 265.544 | 203.074 |
| 1494 | 0.05 | 365.925 | 6.888 | 265.552 | 203.057 |
| 1495 | 0.04 | 366.171 | 6.765 | 265.557 | 203.045 |
| 1496 | 0.05 | 366.54 | 6.642 | 265.564 | 203.028 |
| 1497 | 0.05 | 366.663 | 6.642 | 265.567 | 203.022 |
| 1498 | 0.04 | 366.909 | 6.519 | 265.572 | 203.011 |
| 1499 | 0.05 | 367.155 | 6.396 | 265.577 | 202.999 |
| 1500 | 0.05 | 367.278 | 6.396 | 265.579 | 202.993 |
| 1501 | 0.04 | 367.524 | 6.273 | 265.584 | 202.982 |
| 1502 | 0.05 | 367.77 | 6.15 | 265.589 | 202.97 |
| 1503 | 0.04 | 367.893 | 6.273 | 265.592 | 202.964 |
| 1504 | 0.05 | 368.139 | 6.15 | 265.597 | 202.953 |
| 1505 | 0.05 | 368.385 | 6.15 | 265.602 | 202.941 |
| 1506 | 0.04 | 368.631 | 6.027 | 265.607 | 202.93 |
| 1507 | 0.05 | 369.0 | 5.904 | 265.614 | 202.913 |
| 1508 | 0.05 | 369.246 | 5.904 | 265.619 | 202.901 |
| 1509 | 0.04 | 369.492 | 5.904 | 265.624 | 202.89 |
| 1510 | 0.05 | 369.615 | 5.781 | 265.627 | 202.884 |
| 1511 | 0.04 | 369.615 | 5.781 | 265.627 | 202.884 |
| 1512 | 0.05 | 369.738 | 5.535 | 265.629 | 202.878 |
| 1513 | 0.05 | 369.615 | 5.412 | 265.627 | 202.884 |
| 1514 | 0.04 | 369.492 | 5.289 | 265.624 | 202.89 |
| 1515 | 0.05 | 369.369 | 5.043 | 265.622 | 202.895 |
| 1516 | 0.04 | 369.246 | 5.043 | 265.619 | 202.901 |
| 1517 | 0.05 | 369.246 | 4.92 | 265.619 | 202.901 |
| 1518 | 0.04 | 369.246 | 4.92 | 265.619 | 202.901 |
| 1519 | 0.05 | 369.246 | 4.92 | 265.619 | 202.901 |
| 1520 | 0.05 | 369.246 | 4.92 | 265.619 | 202.901 |
| 1521 | 0.04 | 369.246 | 4.92 | 265.619 | 202.901 |
| 1522 | 0.05 | 369.246 | 4.674 | 265.619 | 202.901 |
| 1523 | 0.04 | 369.369 | 4.551 | 265.622 | 202.895 |
| 1524 | 0.05 | 369.369 | 4.428 | 265.622 | 202.895 |
| 1525 | 0.05 | 369.369 | 4.428 | 265.622 | 202.895 |
| 1526 | 0.04 | 369.246 | 4.305 | 265.619 | 202.901 |
| 1527 | 0.05 | 369.123 | 4.305 | 265.617 | 202.907 |
| 1528 | 0.05 | 369.246 | 4.059 | 265.619 | 202.901 |
| 1529 | 0.04 | 369.246 | 4.059 | 265.619 | 202.901 |
| 1530 | 0.05 | 369.246 | 3.936 | 265.619 | 202.901 |
| 1531 | 0.05 | 369.369 | 3.813 | 265.622 | 202.895 |
| 1532 | 0.04 | 369.369 | 3.69 | 265.622 | 202.895 |
| 1533 | 0.05 | 369.246 | 3.69 | 265.619 | 202.901 |
| 1534 | 0.04 | 369.369 | 3.567 | 265.622 | 202.895 |
| 1535 | 0.05 | 369.246 | 3.444 | 265.619 | 202.901 |
| 1536 | 0.05 | 369.123 | 3.444 | 265.617 | 202.907 |
| 1537 | 0.04 | 369.123 | 3.198 | 265.617 | 202.907 |
| 1538 | 0.05 | 369.0 | 3.321 | 265.614 | 202.913 |
| 1539 | 0.05 | 369.0 | 3.198 | 265.614 | 202.913 |
| 1540 | 0.04 | 369.123 | 3.075 | 265.617 | 202.907 |
| 1541 | 0.04 | 369.123 | 2.952 | 265.617 | 202.907 |
| 1542 | 0.05 | 369.246 | 2.706 | 265.619 | 202.901 |
| 1543 | 0.05 | 369.123 | 2.706 | 265.617 | 202.907 |
| 1544 | 0.04 | 369.123 | 2.706 | 265.617 | 202.907 |
| 1545 | 0.05 | 369.246 | 2.46 | 265.619 | 202.901 |
| 1546 | 0.04 | 369.369 | 2.214 | 265.622 | 202.895 |
| 1547 | 0.05 | 369.369 | 1.968 | 265.622 | 202.895 |
| 1548 | 0.05 | 369.246 | 1.845 | 265.619 | 202.901 |
| 1549 | 0.04 | 369.246 | 1.722 | 265.619 | 202.901 |
| 1550 | 0.05 | 369.246 | 1.476 | 265.619 | 202.901 |
| 1551 | 0.05 | 369.246 | 1.353 | 265.619 | 202.901 |
| 1552 | 0.04 | 369.123 | 1.353 | 265.617 | 202.907 |
| 1553 | 0.05 | 369.246 | 1.107 | 265.619 | 202.901 |
| 1554 | 0.05 | 369.246 | 1.107 | 265.619 | 202.901 |
| 1555 | 0.04 | 369.123 | 0.984 | 265.617 | 202.907 |
| 1556 | 0.05 | 369.0 | 0.984 | 265.614 | 202.913 |
| 1557 | 0.04 | 369.0 | 0.861 | 265.614 | 202.913 |
| 1558 | 0.05 | 369.0 | 0.738 | 265.614 | 202.913 |
| 1559 | 0.05 | 369.0 | 0.738 | 265.614 | 202.913 |
| 1560 | 0.04 | 369.0 | 0.615 | 265.614 | 202.913 |
| 1561 | 0.05 | 369.0 | 0.615 | 265.614 | 202.913 |
| 1562 | 0.05 | 369.0 | 0.615 | 265.614 | 202.913 |
| 1563 | 0.04 | 369.0 | 0.492 | 265.614 | 202.913 |
| 1564 | 0.05 | 369.123 | 0.369 | 265.617 | 202.907 |
| 1565 | 0.04 | 369.123 | 0.246 | 265.617 | 202.907 |
| 1566 | 0.05 | 369.123 | 0.123 | 265.617 | 202.907 |
| 1567 | 0.04 | 369.0 | 0.246 | 265.614 | 202.913 |
| 1568 | 0.05 | 369.123 | 0.123 | 265.617 | 202.907 |
| 1569 | 0.04 | 369.0 | 0.246 | 265.614 | 202.913 |
| 1570 | 0.05 | 369.0 | 0.123 | 265.614 | 202.913 |
| 1571 | 0.05 | 369.0 | 0.123 | 265.614 | 202.913 |
| 1572 | 0.04 | 369.0 | 0.0 | 265.614 | 202.913 |
| 1573 | 0.05 | 369.0 | 0.0 | 265.614 | 202.913 |
| 1574 | 0.05 | 369.0 | 0.0 | 265.614 | 202.913 |
| 1575 | 0.04 | 369.0 | 0.123 | 265.614 | 202.913 |
| 1576 | 0.05 | 369.0 | 0.0 | 265.614 | 202.913 |
| 1577 | 0.05 | 369.0 | 0.0 | 265.614 | 202.913 |
| 1578 | 0.04 | 369.0 | 0.0 | 265.614 | 202.913 |
| 1579 | 0.05 | 369.123 | -0.246 | 265.617 | 202.907 |
| 1580 | 0.04 | 369.246 | -0.369 | 265.619 | 202.901 |
| 1581 | 0.05 | 369.246 | -0.369 | 265.619 | 202.901 |
| 1582 | 0.05 | 369.246 | -0.492 | 265.619 | 202.901 |
| 1583 | 0.04 | 369.246 | -0.492 | 265.619 | 202.901 |
| 1584 | 0.05 | 369.246 | -0.615 | 265.619 | 202.901 |
| 1585 | 0.05 | 369.123 | -0.615 | 265.617 | 202.907 |
| 1586 | 0.04 | 369.123 | -0.738 | 265.617 | 202.907 |
| 1587 | 0.05 | 369.0 | -0.738 | 265.614 | 202.913 |
| 1588 | 0.04 | 368.877 | -0.615 | 265.612 | 202.918 |
| 1589 | 0.05 | 368.877 | -0.615 | 265.612 | 202.918 |
| 1590 | 0.05 | 368.877 | -0.615 | 265.612 | 202.918 |
| 1591 | 0.04 | 368.877 | -0.615 | 265.612 | 202.918 |
| 1592 | 0.05 | 369.0 | -0.738 | 265.614 | 202.913 |
| 1593 | 0.04 | 369.0 | -0.738 | 265.614 | 202.913 |
| 1594 | 0.05 | 369.123 | -0.861 | 265.617 | 202.907 |
| 1595 | 0.05 | 369.123 | -0.861 | 265.617 | 202.907 |
| 1596 | 0.04 | 369.123 | -0.861 | 265.617 | 202.907 |
| 1597 | 0.05 | 369.123 | -0.984 | 265.617 | 202.907 |
| 1598 | 0.05 | 369.123 | -0.984 | 265.617 | 202.907 |
| 1599 | 0.04 | 369.123 | -0.984 | 265.617 | 202.907 |
| 1600 | 0.05 | 369.0 | -0.984 | 265.614 | 202.913 |
| 1601 | 0.05 | 369.0 | -0.984 | 265.614 | 202.913 |
| 1602 | 0.04 | 369.0 | -1.107 | 265.614 | 202.913 |
| 1603 | 0.05 | 369.0 | -1.107 | 265.614 | 202.913 |
| 1604 | 0.04 | 369.0 | -1.107 | 265.614 | 202.913 |
| 1605 | 0.05 | 369.0 | -1.353 | 265.614 | 202.913 |
| 1606 | 0.05 | 369.0 | -1.599 | 265.614 | 202.913 |
| 1607 | 0.04 | 369.0 | -1.845 | 265.614 | 202.913 |
| 1608 | 0.05 | 369.0 | -1.968 | 265.614 | 202.913 |
| 1609 | 0.05 | 369.0 | -2.091 | 265.614 | 202.913 |
| 1610 | 0.04 | 369.123 | -2.091 | 265.617 | 202.907 |
| 1611 | 0.05 | 369.123 | -2.091 | 265.617 | 202.907 |
| 1612 | 0.04 | 369.123 | -2.091 | 265.617 | 202.907 |
| 1613 | 0.05 | 369.123 | -2.091 | 265.617 | 202.907 |
| 1614 | 0.05 | 369.123 | -2.091 | 265.617 | 202.907 |
| 1615 | 0.04 | 369.0 | -2.091 | 265.614 | 202.913 |
| 1616 | 0.05 | 369.0 | -2.091 | 265.614 | 202.913 |
| 1617 | 0.05 | 369.0 | -2.091 | 265.614 | 202.913 |
| 1618 | 0.04 | 369.0 | -2.091 | 265.614 | 202.913 |
| 1619 | 0.05 | 369.0 | -2.091 | 265.614 | 202.913 |
| 1620 | 0.04 | 369.0 | -1.968 | 265.614 | 202.913 |
| 1621 | 0.05 | 369.123 | -1.968 | 265.617 | 202.907 |
| 1622 | 0.05 | 369.123 | -1.968 | 265.617 | 202.907 |
| 1623 | 0.05 | 369.123 | -1.968 | 265.617 | 202.907 |
| 1624 | 0.04 | 369.123 | -2.091 | 265.617 | 202.907 |
| 1625 | 0.05 | 369.0 | -2.091 | 265.614 | 202.913 |
| 1626 | 0.05 | 369.0 | -2.214 | 265.614 | 202.913 |
| 1627 | 0.04 | 369.0 | -2.337 | 265.614 | 202.913 |
| 1628 | 0.05 | 369.0 | -2.337 | 265.614 | 202.913 |
| 1629 | 0.04 | 369.0 | -2.46 | 265.614 | 202.913 |
| 1630 | 0.05 | 369.0 | -2.46 | 265.614 | 202.913 |
| 1631 | 0.05 | 369.0 | -2.46 | 265.614 | 202.913 |
| 1632 | 0.04 | 369.0 | -2.46 | 265.614 | 202.913 |
| 1633 | 0.05 | 369.0 | -2.46 | 265.614 | 202.913 |
| 1634 | 0.05 | 369.0 | -2.46 | 265.614 | 202.913 |
| 1635 | 0.04 | 368.877 | -2.337 | 265.612 | 202.918 |
| 1636 | 0.05 | 368.877 | -2.337 | 265.612 | 202.918 |
| 1637 | 0.04 | 368.877 | -2.46 | 265.612 | 202.918 |
| 1638 | 0.05 | 368.754 | -2.214 | 265.609 | 202.924 |
| 1639 | 0.05 | 368.877 | -2.337 | 265.612 | 202.918 |
| 1640 | 0.04 | 368.877 | -2.337 | 265.612 | 202.918 |
| 1641 | 0.05 | 369.0 | -2.337 | 265.614 | 202.913 |
| 1642 | 0.05 | 369.0 | -2.214 | 265.614 | 202.913 |
| 1643 | 0.04 | 369.0 | -2.091 | 265.614 | 202.913 |
| 1644 | 0.05 | 369.123 | -2.214 | 265.617 | 202.907 |
| 1645 | 0.04 | 369.123 | -2.337 | 265.617 | 202.907 |
| 1646 | 0.05 | 369.123 | -2.337 | 265.617 | 202.907 |
| 1647 | 0.05 | 369.123 | -2.337 | 265.617 | 202.907 |
| 1648 | 0.04 | 369.123 | -2.46 | 265.617 | 202.907 |
| 1649 | 0.05 | 369.0 | -2.46 | 265.614 | 202.913 |
| 1650 | 0.05 | 369.0 | -2.46 | 265.614 | 202.913 |
| 1651 | 0.04 | 369.0 | -2.46 | 265.614 | 202.913 |
| 1652 | 0.05 | 369.0 | -2.583 | 265.614 | 202.913 |
| 1653 | 0.04 | 369.0 | -2.583 | 265.614 | 202.913 |
| 1654 | 0.05 | 368.877 | -2.583 | 265.612 | 202.918 |
| 1655 | 0.05 | 368.877 | -2.583 | 265.612 | 202.918 |
| 1656 | 0.04 | 368.877 | -2.706 | 265.612 | 202.918 |
| 1657 | 0.05 | 368.877 | -2.583 | 265.612 | 202.918 |
| 1658 | 0.05 | 368.877 | -2.583 | 265.612 | 202.918 |
| 1659 | 0.04 | 369.0 | -2.706 | 265.614 | 202.913 |
| 1660 | 0.05 | 369.123 | -2.829 | 265.617 | 202.907 |
| 1661 | 0.04 | 369.123 | -2.706 | 265.617 | 202.907 |
| 1662 | 0.05 | 369.123 | -2.706 | 265.617 | 202.907 |
| 1663 | 0.05 | 369.123 | -2.706 | 265.617 | 202.907 |
| 1664 | 0.04 | 369.123 | -2.583 | 265.617 | 202.907 |
| 1665 | 0.05 | 369.123 | -2.583 | 265.617 | 202.907 |
| 1666 | 0.05 | 369.246 | -2.952 | 265.619 | 202.901 |
| 1667 | 0.04 | 369.123 | -2.952 | 265.617 | 202.907 |
| 1668 | 0.05 | 369.123 | -2.952 | 265.617 | 202.907 |
| 1669 | 0.04 | 369.0 | -2.952 | 265.614 | 202.913 |
| 1670 | 0.05 | 368.877 | -2.952 | 265.612 | 202.918 |
| 1671 | 0.05 | 368.877 | -3.075 | 265.612 | 202.918 |
| 1672 | 0.04 | 368.877 | -3.198 | 265.612 | 202.918 |
| 1673 | 0.05 | 368.877 | -3.198 | 265.612 | 202.918 |
| 1674 | 0.05 | 368.754 | -3.075 | 265.609 | 202.924 |
| 1675 | 0.04 | 368.877 | -3.075 | 265.612 | 202.918 |
| 1676 | 0.05 | 368.877 | -3.075 | 265.612 | 202.918 |
| 1677 | 0.04 | 369.0 | -3.075 | 265.614 | 202.913 |
| 1678 | 0.05 | 369.123 | -3.198 | 265.617 | 202.907 |
| 1679 | 0.05 | 369.123 | -3.198 | 265.617 | 202.907 |
| 1680 | 0.05 | 369.123 | -3.198 | 265.617 | 202.907 |
| 1681 | 0.04 | 369.123 | -3.444 | 265.617 | 202.907 |
| 1682 | 0.05 | 369.123 | -3.567 | 265.617 | 202.907 |
| 1683 | 0.05 | 369.123 | -3.567 | 265.617 | 202.907 |
| 1684 | 0.04 | 369.0 | -3.444 | 265.614 | 202.913 |
| 1685 | 0.05 | 369.0 | -3.567 | 265.614 | 202.913 |
| 1686 | 0.04 | 369.0 | -3.567 | 265.614 | 202.913 |
| 1687 | 0.05 | 369.0 | -3.444 | 265.614 | 202.913 |
| 1688 | 0.05 | 369.0 | -3.567 | 265.614 | 202.913 |
| 1689 | 0.04 | 369.0 | -3.567 | 265.614 | 202.913 |
| 1690 | 0.05 | 369.0 | -3.69 | 265.614 | 202.913 |
| 1691 | 0.05 | 369.0 | -3.69 | 265.614 | 202.913 |
| 1692 | 0.04 | 368.877 | -3.567 | 265.612 | 202.918 |
| 1693 | 0.05 | 368.877 | -3.69 | 265.612 | 202.918 |
| 1694 | 0.04 | 368.877 | -3.69 | 265.612 | 202.918 |
| 1695 | 0.05 | 368.877 | -3.813 | 265.612 | 202.918 |
| 1696 | 0.05 | 369.0 | -3.936 | 265.614 | 202.913 |
| 1697 | 0.04 | 369.123 | -4.182 | 265.617 | 202.907 |
| 1698 | 0.05 | 369.123 | -4.182 | 265.617 | 202.907 |
| 1699 | 0.05 | 369.123 | -4.305 | 265.617 | 202.907 |
| 1700 | 0.04 | 369.123 | -4.305 | 265.617 | 202.907 |
| 1701 | 0.05 | 369.123 | -4.428 | 265.617 | 202.907 |
| 1702 | 0.04 | 369.0 | -4.428 | 265.614 | 202.913 |
| 1703 | 0.05 | 369.0 | -4.674 | 265.614 | 202.913 |
| 1704 | 0.05 | 368.877 | -4.674 | 265.612 | 202.918 |
| 1705 | 0.04 | 368.754 | -4.674 | 265.609 | 202.924 |
| 1706 | 0.05 | 368.754 | -4.797 | 265.609 | 202.924 |
| 1707 | 0.05 | 368.877 | -4.92 | 265.612 | 202.918 |
| 1708 | 0.04 | 368.877 | -4.92 | 265.612 | 202.918 |
| 1709 | 0.05 | 368.877 | -4.92 | 265.612 | 202.918 |
| 1710 | 0.04 | 369.0 | -5.043 | 265.614 | 202.913 |
| 1711 | 0.05 | 369.0 | -4.92 | 265.614 | 202.913 |
| 1712 | 0.05 | 369.123 | -4.92 | 265.617 | 202.907 |
| 1713 | 0.04 | 369.123 | -4.92 | 265.617 | 202.907 |
| 1714 | 0.05 | 369.123 | -4.92 | 265.617 | 202.907 |
| 1715 | 0.05 | 369.0 | -4.674 | 265.614 | 202.913 |
| 1716 | 0.04 | 368.877 | -4.551 | 265.612 | 202.918 |
| 1717 | 0.05 | 369.0 | -4.674 | 265.614 | 202.913 |
| 1718 | 0.04 | 369.0 | -4.551 | 265.614 | 202.913 |
| 1719 | 0.05 | 369.123 | -4.674 | 265.617 | 202.907 |
| 1720 | 0.05 | 369.123 | -4.551 | 265.617 | 202.907 |
| 1721 | 0.04 | 369.123 | -4.551 | 265.617 | 202.907 |
| 1722 | 0.05 | 369.123 | -4.551 | 265.617 | 202.907 |
| 1723 | 0.05 | 369.123 | -4.551 | 265.617 | 202.907 |
| 1724 | 0.04 | 369.0 | -4.428 | 265.614 | 202.913 |
| 1725 | 0.05 | 369.0 | -4.428 | 265.614 | 202.913 |
| 1726 | 0.04 | 369.0 | -4.428 | 265.614 | 202.913 |
| 1727 | 0.05 | 369.0 | -4.428 | 265.614 | 202.913 |
| 1728 | 0.05 | 368.877 | -4.305 | 265.612 | 202.918 |
| 1729 | 0.04 | 368.877 | -4.305 | 265.612 | 202.918 |
| 1730 | 0.05 | 368.877 | -4.305 | 265.612 | 202.918 |
| 1731 | 0.05 | 369.0 | -4.305 | 265.614 | 202.913 |
| 1732 | 0.04 | 369.123 | -4.428 | 265.617 | 202.907 |
| 1733 | 0.05 | 369.123 | -4.305 | 265.617 | 202.907 |
| 1734 | 0.04 | 369.123 | -4.305 | 265.617 | 202.907 |
| 1735 | 0.05 | 369.123 | -4.428 | 265.617 | 202.907 |
| 1736 | 0.05 | 369.123 | -4.551 | 265.617 | 202.907 |
| 1737 | 0.04 | 369.0 | -4.428 | 265.614 | 202.913 |
| 1738 | 0.05 | 369.0 | -4.551 | 265.614 | 202.913 |
| 1739 | 0.05 | 368.877 | -4.674 | 265.612 | 202.918 |
| 1740 | 0.04 | 368.877 | -4.674 | 265.612 | 202.918 |
| 1741 | 0.05 | 369.0 | -4.797 | 265.614 | 202.913 |
| 1742 | 0.05 | 368.877 | -4.797 | 265.612 | 202.918 |
| 1743 | 0.04 | 369.0 | -4.92 | 265.614 | 202.913 |
| 1744 | 0.05 | 369.0 | -4.797 | 265.614 | 202.913 |
| 1745 | 0.05 | 369.0 | -4.797 | 265.614 | 202.913 |
| 1746 | 0.04 | 368.877 | -4.551 | 265.612 | 202.918 |
| 1747 | 0.05 | 368.877 | -4.428 | 265.612 | 202.918 |
| 1748 | 0.05 | 368.877 | -4.428 | 265.612 | 202.918 |
| 1749 | 0.04 | 369.0 | -4.428 | 265.614 | 202.913 |
| 1750 | 0.05 | 369.0 | -4.428 | 265.614 | 202.913 |
| 1751 | 0.04 | 369.0 | -4.428 | 265.614 | 202.913 |
| 1752 | 0.05 | 369.0 | -4.182 | 265.614 | 202.913 |
| 1753 | 0.05 | 369.0 | -4.182 | 265.614 | 202.913 |
| 1754 | 0.04 | 369.0 | -4.182 | 265.614 | 202.913 |
| 1755 | 0.05 | 369.0 | -4.182 | 265.614 | 202.913 |
| 1756 | 0.05 | 368.877 | -3.936 | 265.612 | 202.918 |
| 1757 | 0.04 | 368.877 | -3.936 | 265.612 | 202.918 |
| 1758 | 0.05 | 369.0 | -4.182 | 265.614 | 202.913 |
| 1759 | 0.04 | 369.0 | -4.182 | 265.614 | 202.913 |
| 1760 | 0.05 | 369.0 | -4.182 | 265.614 | 202.913 |
| 1761 | 0.05 | 369.0 | -4.182 | 265.614 | 202.913 |
| 1762 | 0.04 | 369.0 | -4.059 | 265.614 | 202.913 |
| 1763 | 0.05 | 369.123 | -4.182 | 265.617 | 202.907 |
| 1764 | 0.05 | 369.123 | -4.059 | 265.617 | 202.907 |
| 1765 | 0.04 | 369.123 | -4.059 | 265.617 | 202.907 |
| 1766 | 0.05 | 369.0 | -3.936 | 265.614 | 202.913 |
| 1767 | 0.04 | 369.0 | -3.936 | 265.614 | 202.913 |
| 1768 | 0.05 | 369.0 | -3.936 | 265.614 | 202.913 |
| 1769 | 0.05 | 369.0 | -3.936 | 265.614 | 202.913 |
| 1770 | 0.04 | 369.0 | -3.936 | 265.614 | 202.913 |
| 1771 | 0.05 | 369.0 | -3.936 | 265.614 | 202.913 |
| 1772 | 0.05 | 369.0 | -4.059 | 265.614 | 202.913 |
| 1773 | 0.04 | 369.0 | -4.059 | 265.614 | 202.913 |
| 1774 | 0.05 | 369.123 | -4.182 | 265.617 | 202.907 |
| 1775 | 0.04 | 369.123 | -4.305 | 265.617 | 202.907 |
| 1776 | 0.05 | 369.123 | -4.305 | 265.617 | 202.907 |
| 1777 | 0.05 | 369.0 | -4.305 | 265.614 | 202.913 |
| 1778 | 0.04 | 369.0 | -4.428 | 265.614 | 202.913 |
| 1779 | 0.05 | 369.0 | -4.551 | 265.614 | 202.913 |
| 1780 | 0.05 | 368.877 | -4.551 | 265.612 | 202.918 |
| 1781 | 0.04 | 368.877 | -4.551 | 265.612 | 202.918 |
| 1782 | 0.05 | 368.877 | -4.674 | 265.612 | 202.918 |
| 1783 | 0.04 | 368.754 | -4.551 | 265.609 | 202.924 |
| 1784 | 0.05 | 368.877 | -4.551 | 265.612 | 202.918 |
| 1785 | 0.05 | 368.877 | -4.428 | 265.612 | 202.918 |
| 1786 | 0.04 | 369.0 | -4.428 | 265.614 | 202.913 |
| 1787 | 0.05 | 369.123 | -4.428 | 265.617 | 202.907 |
| 1788 | 0.05 | 369.123 | -4.428 | 265.617 | 202.907 |
| 1789 | 0.04 | 369.246 | -4.551 | 265.619 | 202.901 |
| 1790 | 0.05 | 369.246 | -4.674 | 265.619 | 202.901 |
| 1791 | 0.04 | 369.246 | -4.674 | 265.619 | 202.901 |
| 1792 | 0.05 | 369.123 | -4.551 | 265.617 | 202.907 |
| 1793 | 0.05 | 369.123 | -4.797 | 265.617 | 202.907 |
| 1794 | 0.05 | 369.0 | -4.797 | 265.614 | 202.913 |
| 1795 | 0.04 | 369.0 | -4.797 | 265.614 | 202.913 |
| 1796 | 0.05 | 369.0 | -4.92 | 265.614 | 202.913 |
| 1797 | 0.05 | 368.877 | -4.92 | 265.612 | 202.918 |
| 1798 | 0.04 | 368.877 | -4.92 | 265.612 | 202.918 |
| 1799 | 0.05 | 368.877 | -4.797 | 265.612 | 202.918 |
| 1800 | 0.04 | 368.877 | -4.797 | 265.612 | 202.918 |
| 1801 | 0.05 | 368.877 | -4.797 | 265.612 | 202.918 |
| 1802 | 0.05 | 368.877 | -4.797 | 265.612 | 202.918 |
| 1803 | 0.04 | 368.877 | -4.674 | 265.612 | 202.918 |
| 1804 | 0.05 | 368.877 | -4.674 | 265.612 | 202.918 |
| 1805 | 0.05 | 368.877 | -4.674 | 265.612 | 202.918 |
| 1806 | 0.04 | 368.877 | -4.551 | 265.612 | 202.918 |
| 1807 | 0.05 | 369.0 | -4.551 | 265.614 | 202.913 |
| 1808 | 0.05 | 369.123 | -4.551 | 265.617 | 202.907 |
| 1809 | 0.04 | 369.123 | -4.551 | 265.617 | 202.907 |
| 1810 | 0.05 | 369.123 | -4.551 | 265.617 | 202.907 |
| 1811 | 0.04 | 369.123 | -4.551 | 265.617 | 202.907 |
| 1812 | 0.05 | 369.123 | -4.674 | 265.617 | 202.907 |
| 1813 | 0.05 | 369.123 | -4.797 | 265.617 | 202.907 |
| 1814 | 0.04 | 369.123 | -4.797 | 265.617 | 202.907 |
| 1815 | 0.05 | 369.123 | -4.92 | 265.617 | 202.907 |
| 1816 | 0.04 | 369.0 | -4.797 | 265.614 | 202.913 |
| 1817 | 0.05 | 369.0 | -4.92 | 265.614 | 202.913 |
| 1818 | 0.05 | 369.0 | -4.92 | 265.614 | 202.913 |
| 1819 | 0.04 | 369.0 | -5.043 | 265.614 | 202.913 |
| 1820 | 0.05 | 368.877 | -4.92 | 265.612 | 202.918 |
| 1821 | 0.05 | 368.877 | -4.92 | 265.612 | 202.918 |
| 1822 | 0.04 | 368.877 | -4.92 | 265.612 | 202.918 |
| 1823 | 0.05 | 368.877 | -4.92 | 265.612 | 202.918 |
| 1824 | 0.04 | 368.877 | -4.92 | 265.612 | 202.918 |
| 1825 | 0.05 | 368.877 | -5.043 | 265.612 | 202.918 |
| 1826 | 0.05 | 368.877 | -4.92 | 265.612 | 202.918 |
| 1827 | 0.04 | 368.877 | -4.92 | 265.612 | 202.918 |
| 1828 | 0.05 | 369.0 | -4.92 | 265.614 | 202.913 |
| 1829 | 0.05 | 369.0 | -4.674 | 265.614 | 202.913 |
| 1830 | 0.04 | 369.123 | -4.674 | 265.617 | 202.907 |
| 1831 | 0.05 | 369.0 | -4.797 | 265.614 | 202.913 |
| 1832 | 0.05 | 368.508 | -7.134 | 265.604 | 202.936 |
| 1833 | 0.04 | 364.941 | -7.134 | 265.532 | 203.103 |
| 1834 | 0.05 | 361.743 | -7.503 | 265.467 | 203.255 |
| 1835 | 0.04 | 358.422 | -10.209 | 265.399 | 203.413 |
| 1836 | 0.05 | 355.224 | -10.332 | 265.333 | 203.566 |
| 1837 | 0.05 | 351.78 | -13.038 | 265.262 | 203.732 |
| 1838 | 0.04 | 348.459 | -15.99 | 265.194 | 203.893 |
| 1839 | 0.05 | 344.892 | -21.771 | 265.119 | 204.067 |
| 1840 | 0.04 | 341.694 | -24.354 | 265.052 | 204.225 |
| 1841 | 0.05 | 335.667 | -25.584 | 264.925 | 204.525 |
| 1842 | 0.05 | 332.346 | -28.782 | 264.854 | 204.693 |
| 1843 | 0.04 | 328.656 | -34.563 | 264.774 | 204.88 |
| 1844 | 0.05 | 322.506 | -34.686 | 264.64 | 205.197 |
| 1845 | 0.05 | 318.939 | -40.344 | 264.561 | 205.384 |
| 1846 | 0.04 | 311.682 | -39.237 | 264.398 | 205.769 |
| 1847 | 0.05 | 308.361 | -43.296 | 264.323 | 205.948 |
| 1848 | 0.05 | 301.35 | -43.665 | 264.16 | 206.333 |
| 1849 | 0.04 | 297.045 | -49.323 | 264.059 | 206.574 |
| 1850 | 0.05 | 291.141 | -47.478 | 263.917 | 206.909 |
| 1851 | 0.04 | 287.451 | -52.152 | 263.826 | 207.122 |
| 1852 | 0.05 | 281.793 | -53.013 | 263.685 | 207.454 |
| 1853 | 0.05 | 278.472 | -55.842 | 263.601 | 207.652 |
| 1854 | 0.04 | 272.568 | -58.671 | 263.449 | 208.01 |
| 1855 | 0.05 | 266.295 | -56.211 | 263.283 | 208.399 |
| 1856 | 0.04 | 262.236 | -58.917 | 263.174 | 208.656 |
| 1857 | 0.05 | 258.669 | -61.623 | 263.076 | 208.885 |
| 1858 | 0.05 | 251.904 | -60.762 | 262.886 | 209.327 |
| 1859 | 0.04 | 247.476 | -63.099 | 262.759 | 209.623 |
| 1860 | 0.05 | 244.401 | -63.345 | 262.669 | 209.832 |
| 1861 | 0.04 | 240.219 | -65.805 | 262.545 | 210.119 |
| 1862 | 0.05 | 236.406 | -65.436 | 262.429 | 210.386 |
| 1863 | 0.04 | 230.625 | -65.436 | 262.251 | 210.798 |
| 1864 | 0.05 | 227.427 | -65.928 | 262.15 | 211.03 |
| 1865 | 0.05 | 223.614 | -68.88 | 262.027 | 211.31 |
| 1866 | 0.04 | 217.587 | -65.928 | 261.83 | 211.763 |
| 1867 | 0.05 | 213.897 | -66.174 | 261.706 | 212.045 |
| 1868 | 0.05 | 209.961 | -65.436 | 261.571 | 212.351 |
| 1869 | 0.04 | 206.64 | -65.805 | 261.456 | 212.614 |
| 1870 | 0.05 | 203.442 | -66.42 | 261.343 | 212.869 |
| 1871 | 0.05 | 199.875 | -66.789 | 261.215 | 213.159 |
| 1872 | 0.04 | 196.677 | -66.789 | 261.098 | 213.422 |
| 1873 | 0.05 | 193.233 | -66.543 | 260.971 | 213.709 |
| 1874 | 0.04 | 190.035 | -66.42 | 260.85 | 213.979 |
| 1875 | 0.05 | 186.468 | -66.297 | 260.714 | 214.285 |
| 1876 | 0.05 | 183.147 | -66.42 | 260.585 | 214.574 |
| 1877 | 0.04 | 179.826 | -66.42 | 260.454 | 214.867 |
| 1878 | 0.05 | 176.505 | -63.345 | 260.32 | 215.164 |
| 1879 | 0.04 | 172.815 | -62.976 | 260.17 | 215.499 |
| 1880 | 0.05 | 169.371 | -62.73 | 260.027 | 215.816 |
| 1881 | 0.05 | 166.173 | -60.147 | 259.892 | 216.115 |
| 1882 | 0.04 | 162.852 | -60.024 | 259.749 | 216.429 |
| 1883 | 0.05 | 159.777 | -60.024 | 259.616 | 216.724 |
| 1884 | 0.05 | 159.162 | -60.024 | 259.589 | 216.783 |
| 1885 | 0.04 | 156.087 | -60.147 | 259.452 | 217.082 |
| 1886 | 0.05 | 153.012 | -57.564 | 259.314 | 217.386 |
| 1887 | 0.05 | 149.814 | -57.441 | 259.168 | 217.705 |
| 1888 | 0.04 | 149.076 | -57.195 | 259.134 | 217.78 |
| 1889 | 0.05 | 145.632 | -54.612 | 258.974 | 218.129 |
| 1890 | 0.04 | 144.894 | -56.826 | 258.94 | 218.205 |
| 1891 | 0.05 | 141.696 | -54.366 | 258.788 | 218.535 |
| 1892 | 0.04 | 138.498 | -54.12 | 258.634 | 218.87 |
| 1893 | 0.05 | 135.3 | -51.291 | 258.478 | 219.209 |
| 1894 | 0.05 | 134.931 | -53.997 | 258.46 | 219.249 |
| 1895 | 0.04 | 134.07 | -53.382 | 258.417 | 219.341 |
| 1896 | 0.05 | 130.749 | -53.136 | 258.251 | 219.7 |
| 1897 | 0.04 | 127.305 | -49.815 | 258.077 | 220.077 |
| 1898 | 0.05 | 126.936 | -49.938 | 258.058 | 220.118 |
| 1899 | 0.05 | 123.861 | -47.601 | 257.899 | 220.459 |
| 1900 | 0.04 | 123.369 | -47.847 | 257.874 | 220.514 |
| 1901 | 0.05 | 120.54 | -48.339 | 257.725 | 220.833 |
| 1902 | 0.04 | 119.802 | -47.724 | 257.686 | 220.917 |
| 1903 | 0.05 | 116.727 | -45.141 | 257.522 | 221.269 |
| 1904 | 0.04 | 116.358 | -45.387 | 257.502 | 221.312 |
| 1905 | 0.05 | 112.791 | -45.018 | 257.309 | 221.726 |
| 1906 | 0.05 | 112.422 | -44.526 | 257.289 | 221.769 |
| 1907 | 0.04 | 111.315 | -43.665 | 257.228 | 221.899 |
| 1908 | 0.05 | 108.486 | -41.451 | 257.071 | 222.234 |
| 1909 | 0.04 | 107.871 | -41.697 | 257.037 | 222.307 |
| 1910 | 0.05 | 107.133 | -41.451 | 256.995 | 222.395 |
| 1911 | 0.05 | 104.304 | -41.451 | 256.836 | 222.736 |
| 1912 | 0.04 | 103.689 | -40.959 | 256.801 | 222.81 |
| 1913 | 0.05 | 100.491 | -37.761 | 256.617 | 223.201 |
| 1914 | 0.04 | 100.245 | -37.884 | 256.603 | 223.231 |
| 1915 | 0.05 | 99.507 | -37.515 | 256.56 | 223.322 |
| 1916 | 0.04 | 98.892 | -37.515 | 256.524 | 223.398 |
| 1917 | 0.05 | 96.063 | -35.055 | 256.358 | 223.75 |
| 1918 | 0.05 | 95.694 | -35.178 | 256.336 | 223.796 |
| 1919 | 0.04 | 94.833 | -35.055 | 256.285 | 223.904 |
| 1920 | 0.05 | 92.25 | -32.964 | 256.131 | 224.231 |
| 1921 | 0.05 | 91.881 | -32.964 | 256.109 | 224.278 |
| 1922 | 0.04 | 91.266 | -32.841 | 256.072 | 224.356 |
| 1923 | 0.04 | 90.528 | -32.595 | 256.027 | 224.45 |
| 1924 | 0.05 | 89.667 | -32.226 | 255.975 | 224.561 |
| 1925 | 0.05 | 88.929 | -32.103 | 255.93 | 224.656 |
| 1926 | 0.04 | 86.1 | -29.766 | 255.756 | 225.022 |
| 1927 | 0.05 | 85.608 | -29.643 | 255.726 | 225.086 |
| 1928 | 0.05 | 85.239 | -31.98 | 255.703 | 225.134 |
| 1929 | 0.04 | 84.378 | -30.627 | 255.649 | 225.247 |
| 1930 | 0.05 | 83.517 | -29.766 | 255.596 | 225.36 |
| 1931 | 0.04 | 80.811 | -27.429 | 255.426 | 225.717 |
| 1932 | 0.05 | 80.688 | -27.429 | 255.418 | 225.734 |
| 1933 | 0.04 | 80.073 | -27.06 | 255.379 | 225.816 |
| 1934 | 0.05 | 79.581 | -26.937 | 255.348 | 225.881 |
| 1935 | 0.05 | 78.843 | -26.322 | 255.301 | 225.98 |
| 1936 | 0.04 | 78.105 | -25.953 | 255.253 | 226.079 |
| 1937 | 0.05 | 77.49 | -25.584 | 255.214 | 226.162 |
| 1938 | 0.04 | 76.752 | -25.215 | 255.167 | 226.261 |
| 1939 | 0.05 | 76.137 | -24.723 | 255.127 | 226.344 |
| 1940 | 0.05 | 75.276 | -24.354 | 255.071 | 226.461 |
| 1941 | 0.04 | 74.538 | -23.862 | 255.023 | 226.561 |
| 1942 | 0.05 | 73.923 | -23.37 | 254.983 | 226.645 |
| 1943 | 0.04 | 73.308 | -23.247 | 254.943 | 226.729 |
| 1944 | 0.05 | 72.939 | -23.247 | 254.919 | 226.78 |
| 1945 | 0.04 | 71.955 | -22.632 | 254.854 | 226.915 |
| 1946 | 0.05 | 71.34 | -22.017 | 254.814 | 227.0 |
| 1947 | 0.05 | 70.479 | -21.279 | 254.757 | 227.119 |
| 1948 | 0.04 | 69.864 | -20.91 | 254.716 | 227.204 |
| 1949 | 0.05 | 69.495 | -20.91 | 254.692 | 227.255 |
| 1950 | 0.05 | 68.757 | -20.418 | 254.643 | 227.358 |
| 1951 | 0.04 | 68.265 | -20.049 | 254.61 | 227.426 |
| 1952 | 0.04 | 67.773 | -19.803 | 254.577 | 227.495 |
| 1953 | 0.05 | 67.035 | -19.065 | 254.527 | 227.598 |
| 1954 | 0.05 | 66.42 | -18.819 | 254.486 | 227.685 |
| 1955 | 0.04 | 65.928 | -18.45 | 254.453 | 227.754 |
| 1956 | 0.05 | 65.559 | -17.958 | 254.428 | 227.806 |
| 1957 | 0.05 | 64.944 | -17.589 | 254.386 | 227.893 |
| 1958 | 0.04 | 64.575 | -17.22 | 254.361 | 227.945 |
| 1959 | 0.05 | 64.083 | -16.851 | 254.327 | 228.015 |
| 1960 | 0.04 | 63.591 | -16.728 | 254.294 | 228.085 |
| 1961 | 0.05 | 63.099 | -16.359 | 254.26 | 228.155 |
| 1962 | 0.04 | 60.27 | -13.653 | 254.066 | 228.56 |
| 1963 | 0.05 | 60.639 | -14.145 | 254.091 | 228.506 |
| 1964 | 0.05 | 60.885 | -14.391 | 254.108 | 228.471 |
| 1965 | 0.04 | 60.639 | -14.145 | 254.091 | 228.506 |
| 1966 | 0.05 | 60.639 | -14.268 | 254.091 | 228.506 |
| 1967 | 0.04 | 60.393 | -14.268 | 254.074 | 228.542 |
| 1968 | 0.05 | 60.024 | -13.899 | 254.049 | 228.595 |
| 1969 | 0.05 | 59.901 | -13.776 | 254.04 | 228.613 |
| 1970 | 0.04 | 59.655 | -13.653 | 254.023 | 228.648 |
| 1971 | 0.05 | 59.163 | -13.284 | 253.989 | 228.719 |
| 1972 | 0.04 | 58.917 | -13.161 | 253.972 | 228.755 |
| 1973 | 0.05 | 58.425 | -13.038 | 253.937 | 228.826 |
| 1974 | 0.04 | 58.179 | -12.915 | 253.92 | 228.862 |
| 1975 | 0.05 | 57.933 | -12.546 | 253.903 | 228.897 |
| 1976 | 0.05 | 57.687 | -12.423 | 253.886 | 228.933 |
| 1977 | 0.04 | 57.318 | -12.177 | 253.86 | 228.987 |
| 1978 | 0.05 | 57.072 | -11.931 | 253.843 | 229.023 |
| 1979 | 0.05 | 56.949 | -11.931 | 253.834 | 229.041 |
| 1980 | 0.04 | 56.58 | -11.562 | 253.808 | 229.094 |
| 1981 | 0.04 | 56.211 | -11.316 | 253.782 | 229.148 |
| 1982 | 0.05 | 55.842 | -11.07 | 253.756 | 229.202 |
| 1983 | 0.05 | 55.473 | -10.578 | 253.73 | 229.256 |
| 1984 | 0.04 | 55.35 | -10.455 | 253.721 | 229.274 |
| 1985 | 0.05 | 55.104 | -10.578 | 253.704 | 229.311 |
| 1986 | 0.04 | 54.858 | -10.332 | 253.687 | 229.347 |
| 1987 | 0.05 | 54.735 | -10.209 | 253.678 | 229.365 |
| 1988 | 0.04 | 54.366 | -9.84 | 253.652 | 229.419 |
| 1989 | 0.05 | 54.12 | -9.717 | 253.634 | 229.455 |
| 1990 | 0.05 | 53.628 | -9.225 | 253.599 | 229.528 |
| 1991 | 0.04 | 53.505 | -9.225 | 253.59 | 229.546 |
| 1992 | 0.05 | 53.505 | -9.348 | 253.59 | 229.546 |
| 1993 | 0.04 | 53.013 | -8.733 | 253.555 | 229.619 |
| 1994 | 0.05 | 53.013 | -8.733 | 253.555 | 229.619 |
| 1995 | 0.04 | 52.767 | -8.364 | 253.538 | 229.655 |
| 1996 | 0.05 | 52.521 | -8.364 | 253.52 | 229.692 |
| 1997 | 0.05 | 51.906 | -7.749 | 253.476 | 229.783 |
| 1998 | 0.04 | 51.783 | -7.626 | 253.467 | 229.801 |
| 1999 | 0.05 | 51.66 | -7.626 | 253.458 | 229.82 |
| 2000 | 0.04 | 51.537 | -7.38 | 253.449 | 229.838 |
| 2001 | 0.05 | 51.414 | -7.257 | 253.441 | 229.856 |
| 2002 | 0.04 | 51.291 | -7.134 | 253.432 | 229.875 |
| 2003 | 0.05 | 51.168 | -6.888 | 253.423 | 229.893 |
| 2004 | 0.05 | 51.168 | -7.011 | 253.423 | 229.893 |
| 2005 | 0.04 | 50.922 | -6.765 | 253.405 | 229.93 |
| 2006 | 0.05 | 50.799 | -6.519 | 253.396 | 229.948 |
| 2007 | 0.04 | 50.553 | -6.273 | 253.379 | 229.985 |
| 2008 | 0.05 | 50.43 | -6.396 | 253.37 | 230.003 |
| 2009 | 0.04 | 49.938 | -6.027 | 253.334 | 230.077 |
| 2010 | 0.05 | 49.938 | -6.273 | 253.334 | 230.077 |
| 2011 | 0.05 | 49.692 | -6.027 | 253.316 | 230.114 |
| 2012 | 0.04 | 49.692 | -6.027 | 253.316 | 230.114 |
| 2013 | 0.05 | 49.446 | -5.781 | 253.298 | 230.15 |
| 2014 | 0.04 | 49.323 | -5.412 | 253.289 | 230.169 |
| 2015 | 0.05 | 49.2 | -5.289 | 253.281 | 230.187 |
| 2016 | 0.04 | 48.831 | -5.166 | 253.254 | 230.243 |
| 2017 | 0.05 | 48.831 | -5.412 | 253.254 | 230.243 |
| 2018 | 0.05 | 48.831 | -5.412 | 253.254 | 230.243 |
| 2019 | 0.04 | 48.708 | -5.289 | 253.245 | 230.261 |
| 2020 | 0.05 | 48.462 | -4.92 | 253.227 | 230.298 |
| 2021 | 0.04 | 48.339 | -4.797 | 253.218 | 230.317 |
| 2022 | 0.05 | 48.339 | -4.674 | 253.218 | 230.317 |
| 2023 | 0.04 | 48.339 | -4.797 | 253.218 | 230.317 |
| 2024 | 0.05 | 48.216 | -4.674 | 253.209 | 230.335 |
| 2025 | 0.05 | 48.339 | -4.797 | 253.218 | 230.317 |
| 2026 | 0.04 | 48.093 | -4.674 | 253.2 | 230.354 |
| 2027 | 0.05 | 47.97 | -4.428 | 253.191 | 230.372 |
| 2028 | 0.04 | 47.724 | -4.059 | 253.173 | 230.41 |
| 2029 | 0.05 | 47.601 | -3.936 | 253.164 | 230.428 |
| 2030 | 0.04 | 47.601 | -3.69 | 253.164 | 230.428 |
| 2031 | 0.05 | 47.724 | -4.305 | 253.173 | 230.41 |
| 2032 | 0.05 | 47.478 | -4.059 | 253.155 | 230.447 |
| 2033 | 0.04 | 47.601 | -4.059 | 253.164 | 230.428 |
| 2034 | 0.05 | 47.355 | -3.813 | 253.146 | 230.465 |
| 2035 | 0.04 | 47.232 | -3.69 | 253.137 | 230.484 |
| 2036 | 0.05 | 47.232 | -3.813 | 253.137 | 230.484 |
| 2037 | 0.04 | 47.109 | -3.69 | 253.128 | 230.503 |
| 2038 | 0.05 | 47.109 | -3.69 | 253.128 | 230.503 |
| 2039 | 0.05 | 46.986 | -3.567 | 253.119 | 230.521 |
| 2040 | 0.04 | 46.74 | -3.444 | 253.101 | 230.559 |
| 2041 | 0.05 | 46.74 | -3.444 | 253.101 | 230.559 |
| 2042 | 0.04 | 46.617 | -3.321 | 253.092 | 230.577 |
| 2043 | 0.05 | 46.494 | -3.198 | 253.083 | 230.596 |
| 2044 | 0.04 | 46.371 | -3.198 | 253.074 | 230.614 |
| 2045 | 0.05 | 46.248 | -3.321 | 253.065 | 230.633 |
| 2046 | 0.05 | 46.248 | -3.075 | 253.065 | 230.633 |
| 2047 | 0.04 | 46.248 | -3.321 | 253.065 | 230.633 |
| 2048 | 0.05 | 46.125 | -2.952 | 253.056 | 230.652 |
| 2049 | 0.04 | 46.125 | -2.952 | 253.056 | 230.652 |
| 2050 | 0.05 | 46.248 | -3.321 | 253.065 | 230.633 |
| 2051 | 0.04 | 46.002 | -2.706 | 253.047 | 230.671 |
| 2052 | 0.05 | 46.002 | -2.706 | 253.047 | 230.671 |
| 2053 | 0.05 | 46.002 | -2.706 | 253.047 | 230.671 |
| 2054 | 0.04 | 45.879 | -2.706 | 253.038 | 230.689 |
| 2055 | 0.05 | 45.879 | -2.706 | 253.038 | 230.689 |
| 2056 | 0.04 | 45.879 | -2.706 | 253.038 | 230.689 |
| 2057 | 0.05 | 45.633 | -2.46 | 253.019 | 230.727 |
| 2058 | 0.04 | 45.633 | -2.337 | 253.019 | 230.727 |
| 2059 | 0.05 | 45.633 | -2.337 | 253.019 | 230.727 |
| 2060 | 0.05 | 45.633 | -2.337 | 253.019 | 230.727 |
| 2061 | 0.04 | 45.51 | -2.337 | 253.01 | 230.745 |
| 2062 | 0.05 | 45.387 | -2.46 | 253.001 | 230.764 |
| 2063 | 0.04 | 45.51 | -2.583 | 253.01 | 230.745 |
| 2064 | 0.05 | 45.51 | -2.214 | 253.01 | 230.745 |
| 2065 | 0.04 | 45.387 | -2.214 | 253.001 | 230.764 |
| 2066 | 0.05 | 45.387 | -2.214 | 253.001 | 230.764 |
| 2067 | 0.05 | 45.51 | -2.337 | 253.01 | 230.745 |
| 2068 | 0.04 | 45.387 | -2.214 | 253.001 | 230.764 |
| 2069 | 0.05 | 45.387 | -2.214 | 253.001 | 230.764 |
| 2070 | 0.04 | 45.264 | -2.46 | 252.992 | 230.783 |
| 2071 | 0.05 | 45.141 | -2.214 | 252.983 | 230.802 |
| 2072 | 0.04 | 45.141 | -1.968 | 252.983 | 230.802 |
| 2073 | 0.05 | 45.018 | -1.722 | 252.974 | 230.82 |
| 2074 | 0.05 | 45.141 | -1.845 | 252.983 | 230.802 |
| 2075 | 0.04 | 44.895 | -1.722 | 252.965 | 230.839 |
| 2076 | 0.05 | 44.895 | -1.968 | 252.965 | 230.839 |
| 2077 | 0.04 | 44.895 | -1.968 | 252.965 | 230.839 |
| 2078 | 0.05 | 44.895 | -1.722 | 252.965 | 230.839 |
| 2079 | 0.04 | 44.895 | -1.599 | 252.965 | 230.839 |
| 2080 | 0.05 | 44.649 | -1.476 | 252.947 | 230.877 |
| 2081 | 0.05 | 44.895 | -1.968 | 252.965 | 230.839 |
| 2082 | 0.04 | 44.649 | -1.845 | 252.947 | 230.877 |
| 2083 | 0.05 | 44.526 | -1.722 | 252.938 | 230.896 |
| 2084 | 0.04 | 44.526 | -1.722 | 252.938 | 230.896 |
| 2085 | 0.05 | 44.526 | -1.353 | 252.938 | 230.896 |
| 2086 | 0.04 | 44.403 | -1.107 | 252.929 | 230.914 |
| 2087 | 0.05 | 44.526 | -1.23 | 252.938 | 230.896 |
| 2088 | 0.05 | 44.649 | -1.353 | 252.947 | 230.877 |
| 2089 | 0.04 | 44.526 | -1.23 | 252.938 | 230.896 |
| 2090 | 0.05 | 44.403 | -1.107 | 252.929 | 230.914 |
| 2091 | 0.04 | 44.649 | -1.476 | 252.947 | 230.877 |
| 2092 | 0.05 | 44.403 | -1.23 | 252.929 | 230.914 |
| 2093 | 0.04 | 44.403 | -1.23 | 252.929 | 230.914 |
| 2094 | 0.05 | 44.28 | -0.984 | 252.919 | 230.933 |
| 2095 | 0.05 | 44.403 | -1.107 | 252.929 | 230.914 |
| 2096 | 0.04 | 44.28 | -0.984 | 252.919 | 230.933 |
| 2097 | 0.05 | 44.403 | -1.23 | 252.929 | 230.914 |
| 2098 | 0.04 | 44.403 | -1.107 | 252.929 | 230.914 |
| 2099 | 0.05 | 44.526 | -1.23 | 252.938 | 230.896 |
| 2100 | 0.04 | 44.28 | -1.353 | 252.919 | 230.933 |
| 2101 | 0.05 | 44.28 | -1.476 | 252.919 | 230.933 |
| 2102 | 0.05 | 44.403 | -1.599 | 252.929 | 230.914 |
| 2103 | 0.04 | 44.157 | -1.476 | 252.91 | 230.952 |
| 2104 | 0.04 | 44.034 | -1.353 | 252.901 | 230.971 |
| 2105 | 0.05 | 44.034 | -1.353 | 252.901 | 230.971 |
| 2106 | 0.05 | 44.034 | -1.23 | 252.901 | 230.971 |
| 2107 | 0.04 | 43.911 | -1.107 | 252.892 | 230.99 |
| 2108 | 0.05 | 43.911 | -1.107 | 252.892 | 230.99 |
| 2109 | 0.05 | 43.911 | -1.107 | 252.892 | 230.99 |
| 2110 | 0.04 | 43.911 | -0.984 | 252.892 | 230.99 |
| 2111 | 0.04 | 44.034 | -1.107 | 252.901 | 230.971 |
| 2112 | 0.05 | 44.034 | -1.353 | 252.901 | 230.971 |
| 2113 | 0.05 | 44.034 | -1.23 | 252.901 | 230.971 |
| 2114 | 0.04 | 43.788 | -0.984 | 252.883 | 231.008 |
| 2115 | 0.05 | 43.911 | -0.984 | 252.892 | 230.99 |
| 2116 | 0.04 | 43.788 | -0.615 | 252.883 | 231.008 |
| 2117 | 0.05 | 43.788 | -0.984 | 252.883 | 231.008 |
| 2118 | 0.04 | 43.788 | -0.984 | 252.883 | 231.008 |
| 2119 | 0.05 | 43.911 | -1.23 | 252.892 | 230.99 |
| 2120 | 0.05 | 43.911 | -0.984 | 252.892 | 230.99 |
| 2121 | 0.04 | 43.911 | -1.23 | 252.892 | 230.99 |
| 2122 | 0.05 | 43.911 | -1.23 | 252.892 | 230.99 |
| 2123 | 0.04 | 43.788 | -1.23 | 252.883 | 231.008 |
| 2124 | 0.05 | 43.788 | -1.23 | 252.883 | 231.008 |
| 2125 | 0.04 | 43.911 | -1.353 | 252.892 | 230.99 |
| 2126 | 0.05 | 43.788 | -1.353 | 252.883 | 231.008 |
| 2127 | 0.05 | 43.788 | -1.353 | 252.883 | 231.008 |
| 2128 | 0.04 | 43.542 | -1.107 | 252.865 | 231.046 |
| 2129 | 0.04 | 43.542 | -1.23 | 252.865 | 231.046 |
| 2130 | 0.05 | 43.542 | -1.23 | 252.865 | 231.046 |
| 2131 | 0.05 | 43.788 | -1.353 | 252.883 | 231.008 |
| 2132 | 0.04 | 43.788 | -1.23 | 252.883 | 231.008 |
| 2133 | 0.05 | 43.911 | -1.353 | 252.892 | 230.99 |
| 2134 | 0.05 | 43.911 | -1.353 | 252.892 | 230.99 |
| 2135 | 0.04 | 43.911 | -1.353 | 252.892 | 230.99 |
| 2136 | 0.04 | 43.911 | -1.23 | 252.892 | 230.99 |
| 2137 | 0.05 | 43.788 | -1.23 | 252.883 | 231.008 |
| 2138 | 0.05 | 43.788 | -1.23 | 252.883 | 231.008 |
| 2139 | 0.04 | 43.542 | -0.984 | 252.865 | 231.046 |
| 2140 | 0.05 | 43.542 | -1.107 | 252.865 | 231.046 |
| 2141 | 0.05 | 43.542 | -0.984 | 252.865 | 231.046 |
| 2142 | 0.04 | 43.542 | -0.861 | 252.865 | 231.046 |
| 2143 | 0.04 | 43.419 | -0.738 | 252.855 | 231.065 |
| 2144 | 0.05 | 43.788 | -1.23 | 252.883 | 231.008 |
| 2145 | 0.05 | 43.542 | -0.861 | 252.865 | 231.046 |
| 2146 | 0.04 | 43.419 | -0.861 | 252.855 | 231.065 |
| 2147 | 0.05 | 43.419 | -0.738 | 252.855 | 231.065 |
| 2148 | 0.04 | 43.419 | -0.738 | 252.855 | 231.065 |
| 2149 | 0.05 | 43.542 | -0.984 | 252.865 | 231.046 |
| 2150 | 0.04 | 43.542 | -0.861 | 252.865 | 231.046 |
| 2151 | 0.05 | 43.419 | -0.738 | 252.855 | 231.065 |
| 2152 | 0.05 | 43.419 | -0.984 | 252.855 | 231.065 |
| 2153 | 0.04 | 43.419 | -0.861 | 252.855 | 231.065 |
| 2154 | 0.05 | 43.296 | -0.861 | 252.846 | 231.084 |
| 2155 | 0.04 | 43.173 | -0.615 | 252.837 | 231.103 |
| 2156 | 0.05 | 43.296 | -0.615 | 252.846 | 231.084 |
| 2157 | 0.04 | 43.296 | -0.492 | 252.846 | 231.084 |
We do not need the measured temperatures and pressures at such a high measurement rate (every 40 to 50 ms). Only every 20th measurement point is used to re-construct the temperature and pressure program. The curvature factor $α$ is set to a value of -3.0, based on separate measurements of the temperature profile along the column.
# use only every 20th measurement
time = cumsum(prog_settings.Deltat)[1:20:end]
time_steps = Array{Float64}(undef, length(time))
for i=2:length(time)
time_steps[i] = time[i]-time[i-1]
end
time_steps[1] = 0.0
temp_steps = prog_settings.T[1:20:end]
ΔT_steps = prog_settings.DeltaT[1:20:end]
pin_steps = prog_settings.pinj[1:20:end].*1000.0 .+ 101300.0
pout_steps = prog_settings.pdet[1:20:end].*1000.0
α_steps = -3.0.*ones(length(ΔT_steps))
x₀_steps = zeros(length(ΔT_steps))
L₀_steps = col_tg.L.*ones(length(ΔT_steps))
prog_med_grad = GasChromatographySimulator.Program(time_steps, temp_steps, pin_steps, pout_steps, ΔT_steps, x₀_steps, L₀_steps, α_steps, "outlet", col_tg.L);GasChromatographySimulator.Program{GasChromatographySimulator.var"#gf#2"{String, Matrix{Float64}}}([0.0, 0.9200000000000003, 0.9100000000000007, 0.9199999999999986, 0.9199999999999995, 0.910000000000001, 0.9199999999999999, 0.9199999999999982, 0.9200000000000008, 0.9300000000000006 … 0.9199999999999875, 0.9100000000000108, 0.9200000000000017, 0.9099999999999966, 0.9200000000000017, 0.9099999999999966, 0.9200000000000017, 0.9099999999999966, 0.9099999999999966, 0.9200000000000017], [49.323, 48.954, 49.323, 49.077, 49.569, 49.446, 48.831, 49.323, 49.077, 49.077 … 63.099, 56.211, 51.414, 48.339, 46.74, 45.51, 44.895, 44.28, 43.911, 43.542], [354589.48, 354562.67000000004, 354589.48, 354571.61, 354607.32, 354598.4, 354553.72, 354589.48, 354571.61, 354571.61 … 355560.34, 355082.14, 354740.58, 354517.9, 354400.94, 354310.42000000004, 354264.98, 354219.43, 354192.04000000004, 354164.6], [230168.87, 230224.3, 230168.87, 230205.81999999998, 230131.96, 230150.41, 230242.79, 230168.87, 230205.81999999998, 230205.81999999998 … 228154.50999999998, 229148.40000000002, 229856.25, 230316.84999999998, 230558.51, 230745.38999999998, 230839.16, 230933.15000000002, 230989.65000000002, 231046.23], GasChromatographySimulator.var"#gf#2"{String, Matrix{Float64}}("outlet", [-2.829 0.0 2.05 -3.0; -2.46 0.0 2.05 -3.0; … ; -1.23 0.0 2.05 -3.0; -0.984 0.0 2.05 -3.0]), [-2.829 0.0 2.05 -3.0; -2.46 0.0 2.05 -3.0; … ; -1.23 0.0 2.05 -3.0; -0.984 0.0 2.05 -3.0], 2051×108 extrapolate(interpolate((0.0:0.001:2.05,::Vector{Float64}), ::Matrix{Float64}, Gridded(Linear())), Flat()) with element type Float64:
319.644 319.644 319.644 319.89 … 316.077 315.954 315.831 315.708
319.644 319.644 319.644 319.89 316.077 315.954 315.831 315.708
319.645 319.644 319.645 319.89 316.077 315.954 315.831 315.708
319.645 319.645 319.645 319.891 316.078 315.954 315.831 315.708
319.645 319.645 319.645 319.891 316.078 315.955 315.831 315.708
319.645 319.645 319.645 319.891 … 316.078 315.955 315.832 315.708
319.646 319.645 319.646 319.891 316.078 315.955 315.832 315.709
319.646 319.646 319.646 319.892 316.078 315.955 315.832 315.709
319.646 319.646 319.646 319.892 316.079 315.955 315.832 315.709
319.646 319.646 319.646 319.892 316.079 315.955 315.832 315.709
⋮ ⋱ ⋮
322.44 322.075 322.44 322.199 318.022 317.413 317.046 316.68
322.444 322.079 322.444 322.203 318.025 317.415 317.048 316.682
322.448 322.082 322.448 322.206 318.028 317.417 317.05 316.683
322.452 322.086 322.452 322.21 … 318.03 317.419 317.052 316.685
322.456 322.089 322.456 322.213 318.033 317.421 317.054 316.686
322.46 322.093 322.46 322.217 318.036 317.423 317.056 316.688
322.465 322.097 322.465 322.22 318.039 317.426 317.057 316.689
322.469 322.1 322.469 322.224 318.042 317.428 317.059 316.691
322.473 322.104 322.473 322.227 … 318.045 317.43 317.061 316.692, 108-element extrapolate(interpolate((::Vector{Float64},), ::Vector{Float64}, Gridded(Linear())), Flat()) with element type Float64:
354589.48
354562.67000000004
354589.48
354571.61
354607.32
354598.4
354553.72
354589.48
354571.61
354571.61
⋮
355082.14
354740.58
354517.9
354400.94
354310.42000000004
354264.98
354219.43
354192.04000000004
354164.6, 108-element extrapolate(interpolate((::Vector{Float64},), ::Vector{Float64}, Gridded(Linear())), Flat()) with element type Float64:
230168.87
230224.3
230168.87
230205.81999999998
230131.96
230150.41
230242.79
230168.87
230205.81999999998
230205.81999999998
⋮
229148.40000000002
229856.25
230316.84999999998
230558.51
230745.38999999998
230839.16
230933.15000000002
230989.65000000002
231046.23)The same solutes sub are used as in the previous example.
The parameters are combined:
par_tg = GasChromatographySimulator.Parameters(col_tg, prog_med_grad, sub, opt_tg);GasChromatographySimulator.Parameters(GasChromatographySimulator.Column(2.05, 0.000104, [0.000104], 1.04e-7, [1.04e-7], "FS5ms", "He"), GasChromatographySimulator.Program{GasChromatographySimulator.var"#gf#2"{String, Matrix{Float64}}}([0.0, 0.9200000000000003, 0.9100000000000007, 0.9199999999999986, 0.9199999999999995, 0.910000000000001, 0.9199999999999999, 0.9199999999999982, 0.9200000000000008, 0.9300000000000006 … 0.9199999999999875, 0.9100000000000108, 0.9200000000000017, 0.9099999999999966, 0.9200000000000017, 0.9099999999999966, 0.9200000000000017, 0.9099999999999966, 0.9099999999999966, 0.9200000000000017], [49.323, 48.954, 49.323, 49.077, 49.569, 49.446, 48.831, 49.323, 49.077, 49.077 … 63.099, 56.211, 51.414, 48.339, 46.74, 45.51, 44.895, 44.28, 43.911, 43.542], [354589.48, 354562.67000000004, 354589.48, 354571.61, 354607.32, 354598.4, 354553.72, 354589.48, 354571.61, 354571.61 … 355560.34, 355082.14, 354740.58, 354517.9, 354400.94, 354310.42000000004, 354264.98, 354219.43, 354192.04000000004, 354164.6], [230168.87, 230224.3, 230168.87, 230205.81999999998, 230131.96, 230150.41, 230242.79, 230168.87, 230205.81999999998, 230205.81999999998 … 228154.50999999998, 229148.40000000002, 229856.25, 230316.84999999998, 230558.51, 230745.38999999998, 230839.16, 230933.15000000002, 230989.65000000002, 231046.23], GasChromatographySimulator.var"#gf#2"{String, Matrix{Float64}}("outlet", [-2.829 0.0 2.05 -3.0; -2.46 0.0 2.05 -3.0; … ; -1.23 0.0 2.05 -3.0; -0.984 0.0 2.05 -3.0]), [-2.829 0.0 2.05 -3.0; -2.46 0.0 2.05 -3.0; … ; -1.23 0.0 2.05 -3.0; -0.984 0.0 2.05 -3.0], 2051×108 extrapolate(interpolate((0.0:0.001:2.05,::Vector{Float64}), ::Matrix{Float64}, Gridded(Linear())), Flat()) with element type Float64:
319.644 319.644 319.644 319.89 … 316.077 315.954 315.831 315.708
319.644 319.644 319.644 319.89 316.077 315.954 315.831 315.708
319.645 319.644 319.645 319.89 316.077 315.954 315.831 315.708
319.645 319.645 319.645 319.891 316.078 315.954 315.831 315.708
319.645 319.645 319.645 319.891 316.078 315.955 315.831 315.708
319.645 319.645 319.645 319.891 … 316.078 315.955 315.832 315.708
319.646 319.645 319.646 319.891 316.078 315.955 315.832 315.709
319.646 319.646 319.646 319.892 316.078 315.955 315.832 315.709
319.646 319.646 319.646 319.892 316.079 315.955 315.832 315.709
319.646 319.646 319.646 319.892 316.079 315.955 315.832 315.709
⋮ ⋱ ⋮
322.44 322.075 322.44 322.199 318.022 317.413 317.046 316.68
322.444 322.079 322.444 322.203 318.025 317.415 317.048 316.682
322.448 322.082 322.448 322.206 318.028 317.417 317.05 316.683
322.452 322.086 322.452 322.21 … 318.03 317.419 317.052 316.685
322.456 322.089 322.456 322.213 318.033 317.421 317.054 316.686
322.46 322.093 322.46 322.217 318.036 317.423 317.056 316.688
322.465 322.097 322.465 322.22 318.039 317.426 317.057 316.689
322.469 322.1 322.469 322.224 318.042 317.428 317.059 316.691
322.473 322.104 322.473 322.227 … 318.045 317.43 317.061 316.692, 108-element extrapolate(interpolate((::Vector{Float64},), ::Vector{Float64}, Gridded(Linear())), Flat()) with element type Float64:
354589.48
354562.67000000004
354589.48
354571.61
354607.32
354598.4
354553.72
354589.48
354571.61
354571.61
⋮
355082.14
354740.58
354517.9
354400.94
354310.42000000004
354264.98
354219.43
354192.04000000004
354164.6, 108-element extrapolate(interpolate((::Vector{Float64},), ::Vector{Float64}, Gridded(Linear())), Flat()) with element type Float64:
230168.87
230224.3
230168.87
230205.81999999998
230131.96
230150.41
230242.79
230168.87
230205.81999999998
230205.81999999998
⋮
229148.40000000002
229856.25
230316.84999999998
230558.51
230745.38999999998
230839.16
230933.15000000002
230989.65000000002
231046.23), GasChromatographySimulator.Substance[GasChromatographySimulator.Substance("C9", "111-84-2", 371.19, 30.17, 89.34, 0.001, "Leppert2020b, alkane, alkanes", 0.0001253206335721764, 0.0, 0.0), GasChromatographySimulator.Substance("C10", "124-18-5", 391.24, 32.24, 112.49, 0.001, "Leppert2020b, alkane, Grob, alkanes", 0.00011884991852543487, 0.0, 0.0), GasChromatographySimulator.Substance("C11", "1120-21-4", 410.21999999999997, 33.71, 116.04, 0.001, "Leppert2020b, alkane, Grob, alkanes", 0.00011323854999018596, 0.0, 0.0), GasChromatographySimulator.Substance("C12", "112-40-3", 427.92999999999995, 34.92, 121.44, 0.001, "Leppert2020b, alkane, alkanes", 0.00010831148421185742, 0.0, 0.0), GasChromatographySimulator.Substance("C13", "629-50-5", 444.46999999999997, 35.93, 125.62, 0.001, "Leppert2020b, alkane, alkanes", 0.00010393999972322901, 0.0, 0.0), GasChromatographySimulator.Substance("C14", "629-59-4", 459.98, 36.76, 126.76, 0.001, "Leppert2020b, alkane, alkanes", 0.00010002700149772162, 0.0, 0.0), GasChromatographySimulator.Substance("C15", "629-62-9", 474.4, 37.39, 129.62, 0.001, "Leppert2020b, alkane, alkanes", 9.64976601701651e-5, 0.0, 0.0), GasChromatographySimulator.Substance("C16", "544-76-3", 488.25, 38.46, 142.18, 0.001, "Leppert2020b, alkane, alkanes", 9.329323536538124e-5, 0.0, 0.0), GasChromatographySimulator.Substance("C17", "629-78-7", 501.05999999999995, 38.95, 145.36, 0.001, "Leppert2020b, alkane, alkanes", 9.036687565381776e-5, 0.0, 0.0), GasChromatographySimulator.Substance("C18", "593-45-3", 513.25, 39.58, 153.29, 0.001, "Leppert2020b, alkane, alkanes", 8.768068754143736e-5, 0.0, 0.0) … GasChromatographySimulator.Substance("C21", "629-94-7", 546.54, 41.43, 179.47, 0.001, "Leppert2020b, alkane, alkanes", 8.077845767414391e-5, 0.0, 0.0), GasChromatographySimulator.Substance("C22", "629-97-0", 556.7, 41.89, 183.35, 0.001, "Leppert2020b, alkane, alkanes", 7.879073502414208e-5, 0.0, 0.0), GasChromatographySimulator.Substance("C23", "638-67-5", 566.26, 42.25, 188.99, 0.001, "Leppert2020b, alkane, alkanes", 7.693149436827684e-5, 0.0, 0.0), GasChromatographySimulator.Substance("C24", "646-31-1", 575.2, 42.21, 188.53, 0.001, "Leppert2020b, alkane, alkanes", 7.518755251713027e-5, 0.0, 0.0), GasChromatographySimulator.Substance("C25", "629-99-2", 583.8199999999999, 42.26, 189.51, 0.001, "Leppert2020b, alkane, alkanes", 7.354754525382887e-5, 0.0, 0.0), GasChromatographySimulator.Substance("C26", "630-1-3", 593.5699999999999, 44.16, 216.77, 0.001, "Leppert2020b, alkane", 7.200161658208628e-5, 0.0, 0.0), GasChromatographySimulator.Substance("C27", "593-49-7", 599.77, 41.9, 184.17, 0.001, "Leppert2020b, alkane, alkanes", 7.054117055654164e-5, 0.0, 0.0), GasChromatographySimulator.Substance("C28", "630-2-4", 607.3399999999999, 41.82, 183.91, 0.001, "Leppert2020b, alkane", 6.915867131183108e-5, 0.0, 0.0), GasChromatographySimulator.Substance("C29", "630-3-5", 614.55, 41.67, 183.07, 0.001, "Leppert2020b, alkane", 6.784748059430345e-5, 0.0, 0.0), GasChromatographySimulator.Substance("C30", "638-68-6", 621.54, 41.57, 183.28, 0.001, "Leppert2020b, alkane, alkanes", 6.660172475097402e-5, 0.0, 0.0)], GasChromatographySimulator.Options(OwrenZen5(), 1.0e-6, 0.001, "inlet", true, false, "Blumberg", "Pressure"))The temperature program and the pressure/flow program can be plotted:
p_flow_tg = GasChromatographySimulator.plot_flow(par_tg)
p_press_tg = GasChromatographySimulator.plot_pressure(par_tg)
p_temp_tg = GasChromatographySimulator.plot_temperature(par_tg)
l = @layout([a{0.65w} [b; c]])
p_TpF_tg = plot(p_temp_tg, p_press_tg, p_flow_tg, layout=l)
The temperature at the outlet side of the column is programmed linearly starting with 50°C (hold for 10 s), heating to 370°C in 60 s (heating ramp of 5.33°C/s). During this heating ramp the temperature at the inlet side of the column is heated faster, resulting in an increasing temperature difference, until around 40 s where the temperature at the inlet increases slower than on the outlet resulting in an decreasing temperature difference.
Finally the simulation is run by:
peaklist_tg, sol_tg = GasChromatographySimulator.simulate(par_tg);(22×9 DataFrame
Row │ Name tR τR TR σR uR kR Re ⋯
│ String Float64 Float64 Float64 Float64 Float64 Float64 Fl ⋯
─────┼──────────────────────────────────────────────────────────────────────────
1 │ C9 14.9798 0.049298 75.4821 0.0184568 0.374392 2.26514 2 ⋯
2 │ C10 18.8744 0.0379536 96.402 0.0145397 0.383092 2.08467 2
3 │ C11 21.8124 0.0344387 111.891 0.0120874 0.350983 2.28049 1
4 │ C12 24.2789 0.0330431 125.302 0.0104472 0.316169 2.57205 1
5 │ C13 26.4775 0.0330775 136.986 0.00928411 0.280677 2.96166 1 ⋯
6 │ C14 28.5219 0.0336235 147.958 0.00843564 0.250885 3.3746 1
7 │ C15 30.4589 0.0344016 158.152 0.00774671 0.225185 3.82227 1
8 │ C16 32.3036 0.0354683 168.0 0.00727081 0.204994 4.24796 1
⋮ │ ⋮ ⋮ ⋮ ⋮ ⋮ ⋮ ⋮ ⋱
16 │ C24 45.1073 0.0431222 236.073 0.00562064 0.130342 6.96522 ⋯
17 │ C25 46.5316 0.0434899 243.914 0.00557322 0.12815 7.08973
18 │ C26 47.9264 0.0446066 251.299 0.00561367 0.125849 7.24165
19 │ C27 49.2868 0.045225 258.434 0.0055668 0.123091 7.4193
20 │ C28 50.623 0.0457294 265.687 0.00559676 0.122388 7.47235 ⋯
21 │ C29 51.9303 0.0463357 272.711 0.005648 0.121893 7.51409
22 │ C30 53.2182 0.0471955 279.412 0.00571122 0.121012 7.57716 Na
2 columns and 7 rows omitted, Any[SciMLBase.ODESolution{Float64, 2, Vector{Vector{Float64}}, Nothing, Nothing, Vector{Float64}, Vector{Vector{Vector{Float64}}}, SciMLBase.ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Any}, SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}, SciMLBase.StandardODEProblem}, OwrenZen5, OrdinaryDiffEq.InterpolationData{SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}}, DiffEqBase.DEStats}([[0.0, 0.0], [0.0011414029062964811, 1.5843089579704459e-6], [0.012554464723419461, 1.7424685525639372e-5], [0.12658838709763456, 0.00017555767713139134], [0.4369491403909325, 0.0006046914676232161], [1.6389798868338246, 0.002248790519444465], [1.8657725232055586, 0.0025518243952303145], [2.0365771009889313, 0.0027716932887962903], [2.8251413954064515, 0.00376207516257773], [3.5277821007396266, 0.004639946236709268] … [11.039785834579295, 0.00890302731351328], [11.453989176724813, 0.007445329357040481], [11.991130091153412, 0.006008979584127207], [12.466458377947415, 0.004975033053812671], [12.96805746441259, 0.00414566493269504], [13.320365735804703, 0.0036894082437669198], [13.845709889548093, 0.003153729594418004], [14.324701919396322, 0.0028004861923419575], [14.738886679444125, 0.002559572895438353], [14.979809165690384, 0.0024302933477212923]], nothing, nothing, [0.0, 9.999999999999999e-5, 0.0010999999999999998, 0.011099999999999997, 0.03839492110373871, 0.14522013020209948, 0.1655837553820549, 0.1809861380076051, 0.25299434341726307, 0.31830338967036376 … 1.0831908473083063, 1.143352141169544, 1.2329272259226878, 1.3245614019848109, 1.4356066453118976, 1.5231624825902705, 1.6693317038919813, 1.8192825377630122, 1.9617376283187427, 2.05], [[[0.0, 0.0]], [[11.414116999926637, 0.015843336273385144], [11.414087687480391, 0.015843254040879162], [11.414073031288808, 0.015843212924947166], [11.414029062839317, 0.015843089578426485], [11.414029062839317, 0.015843089578426485], [11.414003938095519, 0.01584301909556095], [11.413963110518015, 0.01584290456223969], [11.413941126505128, 0.01584284289113615]], [[11.413941126505128, 0.01584284289113615], [11.413648010820452, 0.01584202065545282], [11.413501456130675, 0.015841609569700862], [11.41306180457895, 0.015840376439926033], [11.413061804578915, 0.01584037643992592], [11.412810583569266, 0.015839671880374284], [11.41240236252937, 0.015838527104526285], [11.412182541457888, 0.01583791070595702]], [[11.412182541457888, 0.01583791070595702], [11.409251861823781, 0.015829696088184252], [11.407786664520758, 0.01582559147135501], [11.40339166924671, 0.01581328842106147], [11.403391669246655, 0.015813288421061163], [11.400880609337824, 0.01580626528907682], [11.396800769070206, 0.015794864038711186], [11.394604238629483, 0.015788730669938935]], [[11.394604238629483, 0.015788730669938935], [11.386612164920072, 0.015766443442784245], [11.382617232194391, 0.01575532004510836], [11.370636746741933, 0.01572203039499647], [11.370636746741788, 0.015722030394995565], [11.363793718015602, 0.015703062258876403], [11.35267845391352, 0.01567232394321649], [11.346695679100065, 0.015655816091989225]], [[11.346695679100065, 0.015655816091989225], [11.315503588818874, 0.01557017316025017], [11.29992488560516, 0.015527664546260327], [11.25287319472019, 0.015391101301349137], [11.252873228083066, 0.015391103175230125], [11.225499899208758, 0.015313860499877402], [11.180577860020403, 0.015186736594383153], [11.156159469990916, 0.01511745132041278]], [[11.156159469990916, 0.01511745132041278], [11.149927144430887, 0.015099746892924346], [11.146807069990349, 0.015090880752609835], [11.137430838381695, 0.015064223994681518], [11.13743083839318, 0.015064223994881016], [11.132062252514746, 0.0150489527611662], [11.122401389976853, 0.014401146726863271], [11.114207960005757, 0.014370031838416179]], [[11.114207960005757, 0.014370031838416179], [11.105953293269536, 0.014338194163605654], [11.10183150844795, 0.014322332654956709], [11.089476412057406, 0.01427484907070248], [11.08947642361385, 0.014274849353111364], [11.082425925123191, 0.014247812107380577], [11.070983742484817, 0.014204026303859819], [11.064830156069554, 0.014180525566655867]], [[11.064830156069554, 0.014180525566655867], [11.026562734904962, 0.01403493008269073], [11.007548958050108, 0.013963351446827825], [10.950728478483603, 0.013750740639955988], [10.950729619884077, 0.013750768177359528], [10.918465480720876, 0.013631271794901506], [10.866355649353027, 0.013440225314720953], [10.842275034285292, 0.01373207810921541]], [[10.842275034285292, 0.01373207810921541], [10.814495059972586, 0.013635035006180206], [10.800599265199077, 0.01358671386214667], [10.758793158274496, 0.013441622056991617], [10.758793374448494, 0.013441626877232805], [10.73484423116346, 0.013358832376753248], [10.695832561346357, 0.01322447936386778], [10.674776891337697, 0.013152224538036883]] … [[9.173974504715321, -0.04113703655545904], [8.792527519381856, -0.036264876627481187], [8.624642745778281, -0.034437973303013306], [8.140282453886103, -0.029092414733659564], [8.14742689243787, -0.029577349311214134], [7.889660121796002, -0.026597185618246588], [7.5174741226885935, -0.023261723952592593], [7.32712628326075, -0.029104400796841224]], [[7.32712628326075, -0.029104400796841224], [7.16752376210819, -0.02721455338623565], [7.092925420743257, -0.02639846538003817], [6.874924024163754, -0.024026403422773457], [6.875741649775363, -0.02407763521913829], [6.757153209099788, -0.022810831974198812], [6.575450140840435, -0.02102640515783475], [6.482036673051545, -0.02014005440550952]], [[6.482036673051545, -0.02014005440550952], [6.303242550731416, -0.018489865097508464], [6.2211705905652455, -0.01780526802654638], [5.98292538798654, -0.01582382734270285], [5.984342469917551, -0.015893451021543572], [5.856112700981025, -0.014837288697949723], [5.663036614811952, -0.013427835783500493], [5.562002538122197, -0.013822115192068721]], [[5.562002538122197, -0.013822115192068721], [5.42559758522197, -0.012821604842421341], [5.362304789796067, -0.012396936163740727], [5.177926120479022, -0.011166258328398387], [5.17875748070536, -0.011198979652464865], [5.078936084301444, -0.010543693671397956], [4.92704477385497, -0.009640668660838627], [4.849306942621868, -0.009195272711863184]], [[4.849306942621868, -0.009195272711863184], [4.728191565136231, -0.00852132814766812], [4.672023277699441, -0.008235533407519664], [4.508603495427541, -0.007408729265980952], [4.509327407589308, -0.007430485126480332], [4.420966071223341, -0.006991130272367373], [4.286858703594566, -0.006319361787925297], [4.218743035545748, -0.006017212542067992]], [[4.218743035545748, -0.006017212542067992], [4.149479380396293, -0.0057152523120135214], [4.116559373065508, -0.00557946939948997], [4.02019356742573, -0.005184743970130345], [4.0203620498436505, -0.0051886786704897925], [3.967592229115026, -0.004977208239317814], [3.885684876622442, -0.004665096177553063], [3.843273298930778, -0.004507850165324768]], [[3.843273298930778, -0.004507850165324768], [3.752070197531888, -0.004176581980149484], [3.7097457872723445, -0.004034675958729717], [3.587348358084515, -0.0036264590272728024], [3.587791646656023, -0.0036351178933198224], [3.5220084413302013, -0.0034195889103064312], [3.4223264914764027, -0.00311874767132048], [3.3728106057414724, -0.002809730733043742]], [[3.3728106057414724, -0.002809730733043742], [3.3082128477185297, -0.0026366201670298857], [3.2778687019565433, -0.0025599964034655064], [3.189975248250989, -0.0023387496337773294], [3.19016791101585, -0.002341507607575101], [3.142714832269645, -0.0022239908825399573], [3.070194086521072, -0.0020534187539633505], [3.0331717004610708, -0.0019682094538050242]], [[3.0331717004610708, -0.0019682094538050242], [2.987986526863191, -0.001865428736727647], [2.966577133964266, -0.0018186614065224531], [2.904574139298471, -0.0016828771804483652], [2.9046550693488093, -0.0016838456683545234], [2.8711131917995556, -0.001610962418517397], [2.8196489987366355, -0.001501958349963345], [2.7930346840587514, -0.001632144115272198]], [[2.7930346840587514, -0.001632144115272198], [2.7705987885335244, -0.00157272305360502], [2.759802997088661, -0.0015445364954450283], [2.7284165098871407, -0.0014617533872963127], [2.728429314980819, -0.0014619243903715418], [2.7112928100469325, -0.0014164737163328152], [2.684698651309901, -0.0013457840887360017], [2.670998009899191, -0.0013090616358847247]]], SciMLBase.ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Any}, SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}, SciMLBase.StandardODEProblem}(SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}(GasChromatographySimulator.odesystem_r!, LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, SciMLBase.DEFAULT_OBSERVED, nothing), [0.0, 0.0], (0.0, 2.05), Any[GasChromatographySimulator.Column(2.05, 0.000104, [0.000104], 1.04e-7, [1.04e-7], "FS5ms", "He"), GasChromatographySimulator.Program{GasChromatographySimulator.var"#gf#2"{String, Matrix{Float64}}}([0.0, 0.9200000000000003, 0.9100000000000007, 0.9199999999999986, 0.9199999999999995, 0.910000000000001, 0.9199999999999999, 0.9199999999999982, 0.9200000000000008, 0.9300000000000006 … 0.9199999999999875, 0.9100000000000108, 0.9200000000000017, 0.9099999999999966, 0.9200000000000017, 0.9099999999999966, 0.9200000000000017, 0.9099999999999966, 0.9099999999999966, 0.9200000000000017], [49.323, 48.954, 49.323, 49.077, 49.569, 49.446, 48.831, 49.323, 49.077, 49.077 … 63.099, 56.211, 51.414, 48.339, 46.74, 45.51, 44.895, 44.28, 43.911, 43.542], [354589.48, 354562.67000000004, 354589.48, 354571.61, 354607.32, 354598.4, 354553.72, 354589.48, 354571.61, 354571.61 … 355560.34, 355082.14, 354740.58, 354517.9, 354400.94, 354310.42000000004, 354264.98, 354219.43, 354192.04000000004, 354164.6], [230168.87, 230224.3, 230168.87, 230205.81999999998, 230131.96, 230150.41, 230242.79, 230168.87, 230205.81999999998, 230205.81999999998 … 228154.50999999998, 229148.40000000002, 229856.25, 230316.84999999998, 230558.51, 230745.38999999998, 230839.16, 230933.15000000002, 230989.65000000002, 231046.23], GasChromatographySimulator.var"#gf#2"{String, Matrix{Float64}}("outlet", [-2.829 0.0 2.05 -3.0; -2.46 0.0 2.05 -3.0; … ; -1.23 0.0 2.05 -3.0; -0.984 0.0 2.05 -3.0]), [-2.829 0.0 2.05 -3.0; -2.46 0.0 2.05 -3.0; … ; -1.23 0.0 2.05 -3.0; -0.984 0.0 2.05 -3.0], 2051×108 extrapolate(interpolate((0.0:0.001:2.05,::Vector{Float64}), ::Matrix{Float64}, Gridded(Linear())), Flat()) with element type Float64:
319.644 319.644 319.644 319.89 … 316.077 315.954 315.831 315.708
319.644 319.644 319.644 319.89 316.077 315.954 315.831 315.708
319.645 319.644 319.645 319.89 316.077 315.954 315.831 315.708
319.645 319.645 319.645 319.891 316.078 315.954 315.831 315.708
319.645 319.645 319.645 319.891 316.078 315.955 315.831 315.708
319.645 319.645 319.645 319.891 … 316.078 315.955 315.832 315.708
319.646 319.645 319.646 319.891 316.078 315.955 315.832 315.709
319.646 319.646 319.646 319.892 316.078 315.955 315.832 315.709
319.646 319.646 319.646 319.892 316.079 315.955 315.832 315.709
319.646 319.646 319.646 319.892 316.079 315.955 315.832 315.709
⋮ ⋱ ⋮
322.44 322.075 322.44 322.199 318.022 317.413 317.046 316.68
322.444 322.079 322.444 322.203 318.025 317.415 317.048 316.682
322.448 322.082 322.448 322.206 318.028 317.417 317.05 316.683
322.452 322.086 322.452 322.21 … 318.03 317.419 317.052 316.685
322.456 322.089 322.456 322.213 318.033 317.421 317.054 316.686
322.46 322.093 322.46 322.217 318.036 317.423 317.056 316.688
322.465 322.097 322.465 322.22 318.039 317.426 317.057 316.689
322.469 322.1 322.469 322.224 318.042 317.428 317.059 316.691
322.473 322.104 322.473 322.227 … 318.045 317.43 317.061 316.692, 108-element extrapolate(interpolate((::Vector{Float64},), ::Vector{Float64}, Gridded(Linear())), Flat()) with element type Float64:
354589.48
354562.67000000004
354589.48
354571.61
354607.32
354598.4
354553.72
354589.48
354571.61
354571.61
⋮
355082.14
354740.58
354517.9
354400.94
354310.42000000004
354264.98
354219.43
354192.04000000004
354164.6, 108-element extrapolate(interpolate((::Vector{Float64},), ::Vector{Float64}, Gridded(Linear())), Flat()) with element type Float64:
230168.87
230224.3
230168.87
230205.81999999998
230131.96
230150.41
230242.79
230168.87
230205.81999999998
230205.81999999998
⋮
229148.40000000002
229856.25
230316.84999999998
230558.51
230745.38999999998
230839.16
230933.15000000002
230989.65000000002
231046.23), GasChromatographySimulator.Substance("C9", "111-84-2", 371.19, 30.17, 89.34, 0.001, "Leppert2020b, alkane, alkanes", 0.0001253206335721764, 0.0, 0.0), GasChromatographySimulator.Options(OwrenZen5(), 1.0e-6, 0.001, "inlet", true, false, "Blumberg", "Pressure")], Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}(), SciMLBase.StandardODEProblem()), OwrenZen5(), OrdinaryDiffEq.InterpolationData{SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}}(SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}(GasChromatographySimulator.odesystem_r!, LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, SciMLBase.DEFAULT_OBSERVED, nothing), [[0.0, 0.0], [0.0011414029062964811, 1.5843089579704459e-6], [0.012554464723419461, 1.7424685525639372e-5], [0.12658838709763456, 0.00017555767713139134], [0.4369491403909325, 0.0006046914676232161], [1.6389798868338246, 0.002248790519444465], [1.8657725232055586, 0.0025518243952303145], [2.0365771009889313, 0.0027716932887962903], [2.8251413954064515, 0.00376207516257773], [3.5277821007396266, 0.004639946236709268] … [11.039785834579295, 0.00890302731351328], [11.453989176724813, 0.007445329357040481], [11.991130091153412, 0.006008979584127207], [12.466458377947415, 0.004975033053812671], [12.96805746441259, 0.00414566493269504], [13.320365735804703, 0.0036894082437669198], [13.845709889548093, 0.003153729594418004], [14.324701919396322, 0.0028004861923419575], [14.738886679444125, 0.002559572895438353], [14.979809165690384, 0.0024302933477212923]], [0.0, 9.999999999999999e-5, 0.0010999999999999998, 0.011099999999999997, 0.03839492110373871, 0.14522013020209948, 0.1655837553820549, 0.1809861380076051, 0.25299434341726307, 0.31830338967036376 … 1.0831908473083063, 1.143352141169544, 1.2329272259226878, 1.3245614019848109, 1.4356066453118976, 1.5231624825902705, 1.6693317038919813, 1.8192825377630122, 1.9617376283187427, 2.05], [[[0.0, 0.0]], [[11.414116999926637, 0.015843336273385144], [11.414087687480391, 0.015843254040879162], [11.414073031288808, 0.015843212924947166], [11.414029062839317, 0.015843089578426485], [11.414029062839317, 0.015843089578426485], [11.414003938095519, 0.01584301909556095], [11.413963110518015, 0.01584290456223969], [11.413941126505128, 0.01584284289113615]], [[11.413941126505128, 0.01584284289113615], [11.413648010820452, 0.01584202065545282], [11.413501456130675, 0.015841609569700862], [11.41306180457895, 0.015840376439926033], [11.413061804578915, 0.01584037643992592], [11.412810583569266, 0.015839671880374284], [11.41240236252937, 0.015838527104526285], [11.412182541457888, 0.01583791070595702]], [[11.412182541457888, 0.01583791070595702], [11.409251861823781, 0.015829696088184252], [11.407786664520758, 0.01582559147135501], [11.40339166924671, 0.01581328842106147], [11.403391669246655, 0.015813288421061163], [11.400880609337824, 0.01580626528907682], [11.396800769070206, 0.015794864038711186], [11.394604238629483, 0.015788730669938935]], [[11.394604238629483, 0.015788730669938935], [11.386612164920072, 0.015766443442784245], [11.382617232194391, 0.01575532004510836], [11.370636746741933, 0.01572203039499647], [11.370636746741788, 0.015722030394995565], [11.363793718015602, 0.015703062258876403], [11.35267845391352, 0.01567232394321649], [11.346695679100065, 0.015655816091989225]], [[11.346695679100065, 0.015655816091989225], [11.315503588818874, 0.01557017316025017], [11.29992488560516, 0.015527664546260327], [11.25287319472019, 0.015391101301349137], [11.252873228083066, 0.015391103175230125], [11.225499899208758, 0.015313860499877402], [11.180577860020403, 0.015186736594383153], [11.156159469990916, 0.01511745132041278]], [[11.156159469990916, 0.01511745132041278], [11.149927144430887, 0.015099746892924346], [11.146807069990349, 0.015090880752609835], [11.137430838381695, 0.015064223994681518], [11.13743083839318, 0.015064223994881016], [11.132062252514746, 0.0150489527611662], [11.122401389976853, 0.014401146726863271], [11.114207960005757, 0.014370031838416179]], [[11.114207960005757, 0.014370031838416179], [11.105953293269536, 0.014338194163605654], [11.10183150844795, 0.014322332654956709], [11.089476412057406, 0.01427484907070248], [11.08947642361385, 0.014274849353111364], [11.082425925123191, 0.014247812107380577], [11.070983742484817, 0.014204026303859819], [11.064830156069554, 0.014180525566655867]], [[11.064830156069554, 0.014180525566655867], [11.026562734904962, 0.01403493008269073], [11.007548958050108, 0.013963351446827825], [10.950728478483603, 0.013750740639955988], [10.950729619884077, 0.013750768177359528], [10.918465480720876, 0.013631271794901506], [10.866355649353027, 0.013440225314720953], [10.842275034285292, 0.01373207810921541]], [[10.842275034285292, 0.01373207810921541], [10.814495059972586, 0.013635035006180206], [10.800599265199077, 0.01358671386214667], [10.758793158274496, 0.013441622056991617], [10.758793374448494, 0.013441626877232805], [10.73484423116346, 0.013358832376753248], [10.695832561346357, 0.01322447936386778], [10.674776891337697, 0.013152224538036883]] … [[9.173974504715321, -0.04113703655545904], [8.792527519381856, -0.036264876627481187], [8.624642745778281, -0.034437973303013306], [8.140282453886103, -0.029092414733659564], [8.14742689243787, -0.029577349311214134], [7.889660121796002, -0.026597185618246588], [7.5174741226885935, -0.023261723952592593], [7.32712628326075, -0.029104400796841224]], [[7.32712628326075, -0.029104400796841224], [7.16752376210819, -0.02721455338623565], [7.092925420743257, -0.02639846538003817], [6.874924024163754, -0.024026403422773457], [6.875741649775363, -0.02407763521913829], [6.757153209099788, -0.022810831974198812], [6.575450140840435, -0.02102640515783475], [6.482036673051545, -0.02014005440550952]], [[6.482036673051545, -0.02014005440550952], [6.303242550731416, -0.018489865097508464], [6.2211705905652455, -0.01780526802654638], [5.98292538798654, -0.01582382734270285], [5.984342469917551, -0.015893451021543572], [5.856112700981025, -0.014837288697949723], [5.663036614811952, -0.013427835783500493], [5.562002538122197, -0.013822115192068721]], [[5.562002538122197, -0.013822115192068721], [5.42559758522197, -0.012821604842421341], [5.362304789796067, -0.012396936163740727], [5.177926120479022, -0.011166258328398387], [5.17875748070536, -0.011198979652464865], [5.078936084301444, -0.010543693671397956], [4.92704477385497, -0.009640668660838627], [4.849306942621868, -0.009195272711863184]], [[4.849306942621868, -0.009195272711863184], [4.728191565136231, -0.00852132814766812], [4.672023277699441, -0.008235533407519664], [4.508603495427541, -0.007408729265980952], [4.509327407589308, -0.007430485126480332], [4.420966071223341, -0.006991130272367373], [4.286858703594566, -0.006319361787925297], [4.218743035545748, -0.006017212542067992]], [[4.218743035545748, -0.006017212542067992], [4.149479380396293, -0.0057152523120135214], [4.116559373065508, -0.00557946939948997], [4.02019356742573, -0.005184743970130345], [4.0203620498436505, -0.0051886786704897925], [3.967592229115026, -0.004977208239317814], [3.885684876622442, -0.004665096177553063], [3.843273298930778, -0.004507850165324768]], [[3.843273298930778, -0.004507850165324768], [3.752070197531888, -0.004176581980149484], [3.7097457872723445, -0.004034675958729717], [3.587348358084515, -0.0036264590272728024], [3.587791646656023, -0.0036351178933198224], [3.5220084413302013, -0.0034195889103064312], [3.4223264914764027, -0.00311874767132048], [3.3728106057414724, -0.002809730733043742]], [[3.3728106057414724, -0.002809730733043742], [3.3082128477185297, -0.0026366201670298857], [3.2778687019565433, -0.0025599964034655064], [3.189975248250989, -0.0023387496337773294], [3.19016791101585, -0.002341507607575101], [3.142714832269645, -0.0022239908825399573], [3.070194086521072, -0.0020534187539633505], [3.0331717004610708, -0.0019682094538050242]], [[3.0331717004610708, -0.0019682094538050242], [2.987986526863191, -0.001865428736727647], [2.966577133964266, -0.0018186614065224531], [2.904574139298471, -0.0016828771804483652], [2.9046550693488093, -0.0016838456683545234], [2.8711131917995556, -0.001610962418517397], [2.8196489987366355, -0.001501958349963345], [2.7930346840587514, -0.001632144115272198]], [[2.7930346840587514, -0.001632144115272198], [2.7705987885335244, -0.00157272305360502], [2.759802997088661, -0.0015445364954450283], [2.7284165098871407, -0.0014617533872963127], [2.728429314980819, -0.0014619243903715418], [2.7112928100469325, -0.0014164737163328152], [2.684698651309901, -0.0013457840887360017], [2.670998009899191, -0.0013090616358847247]]], true, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}([14.979809165690384, 0.0024302933477212923], [14.738886679444125, 0.002559572895438353], [2.7930346840587514, -0.001632144115272198], [2.7705987885335244, -0.00157272305360502], [2.759802997088661, -0.0015445364954450283], [2.7284165098871407, -0.0014617533872963127], [2.728429314980819, -0.0014619243903715418], [2.7112928100469325, -0.0014164737163328152], [2.684698651309901, -0.0013457840887360017], [2.670998009899191, -0.0013090616358847247], [-9.640588500831738e-8, 6.837336198842223e-10], [14.950264051863094, 0.0024449465558097952], [-6.435292242364971e-6, 0.00019208305040204046], OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}(0.16666666666666666, 0.0625, 0.1875, 0.25, -0.75, -0.75, 3.75, -3.0, 0.5, 0.26895043731778423, -0.7084548104956269, 0.8658892128279884, 0.15462307371928363, 0.06184922948771345, -0.02947695035460993, 0.18500664893617022, 0.4802345261121857, -0.5337849069148937, -0.013090093085106383, 0.7861107753062541, 0.08783068783068783, 0.3006060606060606, 0.22777777777777777, 0.027777777777777776, 0.06218596218596219, 0.2938217338217338, 0.16666666666666666, 0.25, 0.5, 0.5, 0.6428571428571429, 0.875, -0.19894179894179895, 0.9115151515151515, -1.9777777777777779, -0.1111111111111111, 1.67013727013727, -0.2938217338217338, 1.892063492063492, -6.067155067155067, 7.282458282458283, -4.0195360195360195, -7.214545454545455, 20.676923076923078, -20.31142191142191, 7.14965034965035, 7.866666666666666, -18.78205128205128, 13.508547008547009, -2.3653846153846154, 2.0, -5.294871794871795, 4.534188034188034, -1.2115384615384615, -1.4924630924630924, 1.5785667324128863, 1.1958838881915805, -1.219801565955412, -7.051721611721612, 16.273203719357564, -11.978886071193763, 3.0512256973795435, 4.0, -8.384615384615385, 5.769230769230769, -1.3846153846153846))), true, 0, DiffEqBase.DEStats
Number of function 1 evaluations: 794
Number of function 2 evaluations: 0
Number of W matrix evaluations: 0
Number of linear solves: 0
Number of Jacobians created: 0
Number of nonlinear solver iterations: 0
Number of nonlinear solver convergence failures: 0
Number of rootfind condition calls: 0
Number of accepted steps: 39
Number of rejected steps: 74, :Success), SciMLBase.ODESolution{Float64, 2, Vector{Vector{Float64}}, Nothing, Nothing, Vector{Float64}, Vector{Vector{Vector{Float64}}}, SciMLBase.ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Any}, SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}, SciMLBase.StandardODEProblem}, OwrenZen5, OrdinaryDiffEq.InterpolationData{SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}}, DiffEqBase.DEStats}([[0.0, 0.0], [0.0026366604415425376, 9.457170159379952e-6], [0.02900098864241806, 0.00010401233736395179], [0.29241710130190535, 0.0010479194294981226], [0.9630065782011575, 0.003444212394114036], [1.7692324513549893, 0.006311588783959942], [2.1215129351627664, 0.007495713503763245], [2.272772612485628, 0.007995472253026034], [2.749690758704945, 0.009546499653904823], [3.4191636168256587, 0.011751451621436523] … [15.520138619249991, 0.002886587148435445], [15.65564072041708, 0.0027546555361717758], [15.980294969322323, 0.002531883399401279], [16.344656461037623, 0.0023183487673592144], [16.57476704726352, 0.0022004492602323428], [16.994338836935217, 0.0019847173361865443], [17.389080911224127, 0.0018196645142487665], [17.91012266453472, 0.0016493462110478906], [18.225335345031905, 0.001566518920140703], [18.874387576343523, 0.001440474399021169]], nothing, nothing, [0.0, 9.999999999999999e-5, 0.0010999999999999998, 0.011099999999999997, 0.03662805864278827, 0.06745609133849462, 0.08099732776395344, 0.0868405259952601, 0.1053801964633703, 0.13164827840962992 … 0.9953723295670243, 1.0259141404883765, 1.1032760556112526, 1.197024261740003, 1.260080285892645, 1.3832786794822156, 1.509038999853251, 1.688622370331225, 1.8036855730652137, 2.05], [[[0.0, 0.0]], [[26.36681139265225, 0.09457320557689171], [26.366742399137095, 0.09457270422970168], [26.36670790265682, 0.09457245356099743], [26.36660441431995, 0.09457170157432243], [26.366604414319962, 0.09457170157432247], [26.36654527887177, 0.09457127188076701], [26.366449184923574, 0.09457057364908845], [26.366397442620418, 0.09457019768861724]], [[26.366397442620418, 0.09457019768861724], [26.36570758480324, 0.0945651855788763], [26.365362683608605, 0.09456268001287889], [26.36432809037874, 0.09455516525789834], [26.364328090378773, 0.0945551652578986], [26.36373696866589, 0.09455087242326767], [26.362776511294687, 0.09454389860021327], [26.36225935634155, 0.09454014417394073]], [[26.36225935634155, 0.09454014417394073], [26.355367422663242, 0.09449015116254715], [26.3519237592021, 0.0944652000427022], [26.341602045599625, 0.09439052799846392], [26.341602045599437, 0.09439052799846304], [26.33571008656776, 0.09434797995342135], [26.32614540144267, 0.0942790295937709], [26.32100014479522, 0.09424199975740086]], [[26.32100014479522, 0.09424199975740086], [26.303513079503798, 0.0941164705914449], [26.294784740880246, 0.09405400319735749], [26.26866075106226, 0.09386779138976672], [26.26866075106362, 0.09386779138978639], [26.253773965390895, 0.09376218811112445], [26.229647336506282, 0.0935918339222326], [26.216585654040042, 0.09348362784133635]], [[26.216585654040042, 0.09348362784133635], [26.195336464180002, 0.09332829917892389], [26.18467249309301, 0.09325016668311491], [26.152521699788142, 0.09301387655555661], [26.152521699833517, 0.09301387655714881], [26.134042379167624, 0.09287757743309208], [26.103846016076048, 0.09265410556713158], [26.087500100052036, 0.09253275259990691]], [[26.087500100052036, 0.09253275259990691], [26.077898625474184, 0.09246134639260031], [26.0632034984965, 0.08759203755521923], [26.017207246606734, 0.08708448960651283], [26.017115078230795, 0.0869201865216451], [25.99099567425983, 0.08677369091094422], [25.948492247850087, 0.08624772216384315], [25.925696185377102, 0.08598490877999955]], [[25.925696185377102, 0.08598490877999955], [25.912591181125862, 0.08583209204823343], [25.906047503768445, 0.085755924179659], [25.886431495042544, 0.08552775064719723], [25.886431516280272, 0.08552775212552993], [25.875236903386966, 0.08539772866806519], [25.857068369560594, 0.08518700450913873], [25.847296870492976, 0.0850738243122863]], [[25.847296870492976, 0.0850738243122863], [25.80602546775861, 0.08459653902256987], [25.785478003503705, 0.08436026925975072], [25.723982923896443, 0.08365466994673498], [25.723983600444324, 0.08365471614576586], [25.6889875535147, 0.08325501483925533], [25.632343403764022, 0.08261101609398372], [25.601956505521525, 0.08226700307236755]], [[25.601956505521525, 0.08226700307236755], [25.56330678364293, 0.08504914109573147], [25.54403221781725, 0.08483907083322287], [25.48616460593981, 0.0842248430175031], [25.48616520099892, 0.0841936707867047], [25.453099487949665, 0.08387230139706958], [25.399371370217267, 0.08329098730732083], [25.370441848534792, 0.08298758511980074]] … [[4.978927404393362, -0.006179269224764153], [4.893625773166378, -0.0058541307716149585], [4.853299833106623, -0.005709671094873076], [4.735240207482772, -0.0052889606522266075], [4.735520742949992, -0.0052946087583906065], [4.670976905570449, -0.0050691341203286545], [4.57115550812663, -0.004740479553671725], [4.519562728107517, -0.004575423144665078]], [[4.519562728107517, -0.004575423144665078], [4.491172963270762, -0.004485954911049295], [4.477267897117723, -0.004443082172171761], [4.435966505337296, -0.004316196243433855], [4.435978931893208, -0.004316402140826643], [4.412801184878861, -0.004246072924806092], [4.375813910081497, -0.004135654566896561], [4.357101135731113, -0.0032216037939867]], [[4.357101135731113, -0.0032216037939867], [4.300646268373049, -0.003096276879111749], [4.273594175166907, -0.003038809726237774], [4.194060901546434, -0.0028705495057117503], [4.194162133925624, -0.0028717278186976133], [4.150315511196655, -0.0027805953833012096], [4.081723351223629, -0.0026432285636224075], [4.045986777615613, -0.0025731729906125016]], [[4.045986777615613, -0.0025731729906125016], [3.989616192014998, -0.002464082682474564], [3.9627153625583476, -0.002414416830692237], [3.88383947261575, -0.002269299248605758], [3.8839555850780205, -0.0022704798739682404], [3.840643462498419, -0.0021921558411269327], [3.773188551427283, -0.002074959827781218], [3.7381768799196657, -0.002015431690364884]], [[3.7381768799196657, -0.002015431690364884], [3.7074278339116145, -0.001963732259230337], [3.6924829277027147, -0.0019392718576379535], [3.6483200770896187, -0.0018671762815629398], [3.64834225166872, -0.0018673716274296946], [3.62375082298653, -0.0018277362032107275], [3.5848228253547156, -0.001766214362317539], [3.5640262223429855, -0.0020357243542857674]], [[3.5640262223429855, -0.0020357243542857674], [3.507099789111682, -0.0019284564009821642], [3.4802408961990934, -0.0018805349036280703], [3.4021303227429307, -0.001741361358417767], [3.4022898857691137, -0.001742947678206623], [3.3598984361583843, -0.0016685105801827285], [3.2947560938991085, -0.001559373466183131], [3.2613357490124577, -0.0015045209028288161]], [[3.2613357490124577, -0.0015045209028288161], [3.2173799045484213, -0.0014331712645716088], [3.196561598001413, -0.0014008154007465223], [3.136114439066021, -0.0013066290030042448], [3.136207217211904, -0.0013074162992283312], [3.1034272827268463, -0.0012567896745957605], [3.053040208956893, -0.0011813626729107495], [3.0272308632442684, -0.001143166114062419]], [[3.0272308632442684, -0.001143166114062419], [2.9802177892206636, -0.0010737329134532436], [2.95860764093696, -0.00102422356658009], [2.8971602935121714, -0.0009421440787777119], [2.8973377888692746, -0.0009316133653389742], [2.8648742685719215, -0.0008977660882478135], [2.816631446881056, -0.0008297855514078819], [2.7927091078344954, -0.0007966913578614131]], [[2.7927091078344954, -0.0007966913578614131], [2.773339004750415, -0.0007693231078154343], [2.764162798830998, -0.0007564279698503649], [2.737934207404356, -0.0007184440484345846], [2.7379516212882007, -0.0007185666219360087], [2.7239838321447722, -0.0006976954690951345], [2.7029186941456085, -0.0006653295306399016], [2.6923952075770847, -0.0006485105572121291]], [[2.6923952075770847, -0.0006485105572121291], [2.6653297897000154, -0.0006018780341331955], [2.653913383506927, -0.0005808327859633092], [2.626970947156453, -0.000504710816595192], [2.6270214891969084, -0.0005066488854029423], [2.6169401201161824, -0.0004701027089970166], [2.6094834537887377, -0.0004148494297663976], [2.610342388888821, -0.00038600467123496985]]], SciMLBase.ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Any}, SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}, SciMLBase.StandardODEProblem}(SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}(GasChromatographySimulator.odesystem_r!, LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, SciMLBase.DEFAULT_OBSERVED, nothing), [0.0, 0.0], (0.0, 2.05), Any[GasChromatographySimulator.Column(2.05, 0.000104, [0.000104], 1.04e-7, [1.04e-7], "FS5ms", "He"), GasChromatographySimulator.Program{GasChromatographySimulator.var"#gf#2"{String, Matrix{Float64}}}([0.0, 0.9200000000000003, 0.9100000000000007, 0.9199999999999986, 0.9199999999999995, 0.910000000000001, 0.9199999999999999, 0.9199999999999982, 0.9200000000000008, 0.9300000000000006 … 0.9199999999999875, 0.9100000000000108, 0.9200000000000017, 0.9099999999999966, 0.9200000000000017, 0.9099999999999966, 0.9200000000000017, 0.9099999999999966, 0.9099999999999966, 0.9200000000000017], [49.323, 48.954, 49.323, 49.077, 49.569, 49.446, 48.831, 49.323, 49.077, 49.077 … 63.099, 56.211, 51.414, 48.339, 46.74, 45.51, 44.895, 44.28, 43.911, 43.542], [354589.48, 354562.67000000004, 354589.48, 354571.61, 354607.32, 354598.4, 354553.72, 354589.48, 354571.61, 354571.61 … 355560.34, 355082.14, 354740.58, 354517.9, 354400.94, 354310.42000000004, 354264.98, 354219.43, 354192.04000000004, 354164.6], [230168.87, 230224.3, 230168.87, 230205.81999999998, 230131.96, 230150.41, 230242.79, 230168.87, 230205.81999999998, 230205.81999999998 … 228154.50999999998, 229148.40000000002, 229856.25, 230316.84999999998, 230558.51, 230745.38999999998, 230839.16, 230933.15000000002, 230989.65000000002, 231046.23], GasChromatographySimulator.var"#gf#2"{String, Matrix{Float64}}("outlet", [-2.829 0.0 2.05 -3.0; -2.46 0.0 2.05 -3.0; … ; -1.23 0.0 2.05 -3.0; -0.984 0.0 2.05 -3.0]), [-2.829 0.0 2.05 -3.0; -2.46 0.0 2.05 -3.0; … ; -1.23 0.0 2.05 -3.0; -0.984 0.0 2.05 -3.0], 2051×108 extrapolate(interpolate((0.0:0.001:2.05,::Vector{Float64}), ::Matrix{Float64}, Gridded(Linear())), Flat()) with element type Float64:
319.644 319.644 319.644 319.89 … 316.077 315.954 315.831 315.708
319.644 319.644 319.644 319.89 316.077 315.954 315.831 315.708
319.645 319.644 319.645 319.89 316.077 315.954 315.831 315.708
319.645 319.645 319.645 319.891 316.078 315.954 315.831 315.708
319.645 319.645 319.645 319.891 316.078 315.955 315.831 315.708
319.645 319.645 319.645 319.891 … 316.078 315.955 315.832 315.708
319.646 319.645 319.646 319.891 316.078 315.955 315.832 315.709
319.646 319.646 319.646 319.892 316.078 315.955 315.832 315.709
319.646 319.646 319.646 319.892 316.079 315.955 315.832 315.709
319.646 319.646 319.646 319.892 316.079 315.955 315.832 315.709
⋮ ⋱ ⋮
322.44 322.075 322.44 322.199 318.022 317.413 317.046 316.68
322.444 322.079 322.444 322.203 318.025 317.415 317.048 316.682
322.448 322.082 322.448 322.206 318.028 317.417 317.05 316.683
322.452 322.086 322.452 322.21 … 318.03 317.419 317.052 316.685
322.456 322.089 322.456 322.213 318.033 317.421 317.054 316.686
322.46 322.093 322.46 322.217 318.036 317.423 317.056 316.688
322.465 322.097 322.465 322.22 318.039 317.426 317.057 316.689
322.469 322.1 322.469 322.224 318.042 317.428 317.059 316.691
322.473 322.104 322.473 322.227 … 318.045 317.43 317.061 316.692, 108-element extrapolate(interpolate((::Vector{Float64},), ::Vector{Float64}, Gridded(Linear())), Flat()) with element type Float64:
354589.48
354562.67000000004
354589.48
354571.61
354607.32
354598.4
354553.72
354589.48
354571.61
354571.61
⋮
355082.14
354740.58
354517.9
354400.94
354310.42000000004
354264.98
354219.43
354192.04000000004
354164.6, 108-element extrapolate(interpolate((::Vector{Float64},), ::Vector{Float64}, Gridded(Linear())), Flat()) with element type Float64:
230168.87
230224.3
230168.87
230205.81999999998
230131.96
230150.41
230242.79
230168.87
230205.81999999998
230205.81999999998
⋮
229148.40000000002
229856.25
230316.84999999998
230558.51
230745.38999999998
230839.16
230933.15000000002
230989.65000000002
231046.23), GasChromatographySimulator.Substance("C10", "124-18-5", 391.24, 32.24, 112.49, 0.001, "Leppert2020b, alkane, Grob, alkanes", 0.00011884991852543487, 0.0, 0.0), GasChromatographySimulator.Options(OwrenZen5(), 1.0e-6, 0.001, "inlet", true, false, "Blumberg", "Pressure")], Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}(), SciMLBase.StandardODEProblem()), OwrenZen5(), OrdinaryDiffEq.InterpolationData{SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}}(SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}(GasChromatographySimulator.odesystem_r!, LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, SciMLBase.DEFAULT_OBSERVED, nothing), [[0.0, 0.0], [0.0026366604415425376, 9.457170159379952e-6], [0.02900098864241806, 0.00010401233736395179], [0.29241710130190535, 0.0010479194294981226], [0.9630065782011575, 0.003444212394114036], [1.7692324513549893, 0.006311588783959942], [2.1215129351627664, 0.007495713503763245], [2.272772612485628, 0.007995472253026034], [2.749690758704945, 0.009546499653904823], [3.4191636168256587, 0.011751451621436523] … [15.520138619249991, 0.002886587148435445], [15.65564072041708, 0.0027546555361717758], [15.980294969322323, 0.002531883399401279], [16.344656461037623, 0.0023183487673592144], [16.57476704726352, 0.0022004492602323428], [16.994338836935217, 0.0019847173361865443], [17.389080911224127, 0.0018196645142487665], [17.91012266453472, 0.0016493462110478906], [18.225335345031905, 0.001566518920140703], [18.874387576343523, 0.001440474399021169]], [0.0, 9.999999999999999e-5, 0.0010999999999999998, 0.011099999999999997, 0.03662805864278827, 0.06745609133849462, 0.08099732776395344, 0.0868405259952601, 0.1053801964633703, 0.13164827840962992 … 0.9953723295670243, 1.0259141404883765, 1.1032760556112526, 1.197024261740003, 1.260080285892645, 1.3832786794822156, 1.509038999853251, 1.688622370331225, 1.8036855730652137, 2.05], [[[0.0, 0.0]], [[26.36681139265225, 0.09457320557689171], [26.366742399137095, 0.09457270422970168], [26.36670790265682, 0.09457245356099743], [26.36660441431995, 0.09457170157432243], [26.366604414319962, 0.09457170157432247], [26.36654527887177, 0.09457127188076701], [26.366449184923574, 0.09457057364908845], [26.366397442620418, 0.09457019768861724]], [[26.366397442620418, 0.09457019768861724], [26.36570758480324, 0.0945651855788763], [26.365362683608605, 0.09456268001287889], [26.36432809037874, 0.09455516525789834], [26.364328090378773, 0.0945551652578986], [26.36373696866589, 0.09455087242326767], [26.362776511294687, 0.09454389860021327], [26.36225935634155, 0.09454014417394073]], [[26.36225935634155, 0.09454014417394073], [26.355367422663242, 0.09449015116254715], [26.3519237592021, 0.0944652000427022], [26.341602045599625, 0.09439052799846392], [26.341602045599437, 0.09439052799846304], [26.33571008656776, 0.09434797995342135], [26.32614540144267, 0.0942790295937709], [26.32100014479522, 0.09424199975740086]], [[26.32100014479522, 0.09424199975740086], [26.303513079503798, 0.0941164705914449], [26.294784740880246, 0.09405400319735749], [26.26866075106226, 0.09386779138976672], [26.26866075106362, 0.09386779138978639], [26.253773965390895, 0.09376218811112445], [26.229647336506282, 0.0935918339222326], [26.216585654040042, 0.09348362784133635]], [[26.216585654040042, 0.09348362784133635], [26.195336464180002, 0.09332829917892389], [26.18467249309301, 0.09325016668311491], [26.152521699788142, 0.09301387655555661], [26.152521699833517, 0.09301387655714881], [26.134042379167624, 0.09287757743309208], [26.103846016076048, 0.09265410556713158], [26.087500100052036, 0.09253275259990691]], [[26.087500100052036, 0.09253275259990691], [26.077898625474184, 0.09246134639260031], [26.0632034984965, 0.08759203755521923], [26.017207246606734, 0.08708448960651283], [26.017115078230795, 0.0869201865216451], [25.99099567425983, 0.08677369091094422], [25.948492247850087, 0.08624772216384315], [25.925696185377102, 0.08598490877999955]], [[25.925696185377102, 0.08598490877999955], [25.912591181125862, 0.08583209204823343], [25.906047503768445, 0.085755924179659], [25.886431495042544, 0.08552775064719723], [25.886431516280272, 0.08552775212552993], [25.875236903386966, 0.08539772866806519], [25.857068369560594, 0.08518700450913873], [25.847296870492976, 0.0850738243122863]], [[25.847296870492976, 0.0850738243122863], [25.80602546775861, 0.08459653902256987], [25.785478003503705, 0.08436026925975072], [25.723982923896443, 0.08365466994673498], [25.723983600444324, 0.08365471614576586], [25.6889875535147, 0.08325501483925533], [25.632343403764022, 0.08261101609398372], [25.601956505521525, 0.08226700307236755]], [[25.601956505521525, 0.08226700307236755], [25.56330678364293, 0.08504914109573147], [25.54403221781725, 0.08483907083322287], [25.48616460593981, 0.0842248430175031], [25.48616520099892, 0.0841936707867047], [25.453099487949665, 0.08387230139706958], [25.399371370217267, 0.08329098730732083], [25.370441848534792, 0.08298758511980074]] … [[4.978927404393362, -0.006179269224764153], [4.893625773166378, -0.0058541307716149585], [4.853299833106623, -0.005709671094873076], [4.735240207482772, -0.0052889606522266075], [4.735520742949992, -0.0052946087583906065], [4.670976905570449, -0.0050691341203286545], [4.57115550812663, -0.004740479553671725], [4.519562728107517, -0.004575423144665078]], [[4.519562728107517, -0.004575423144665078], [4.491172963270762, -0.004485954911049295], [4.477267897117723, -0.004443082172171761], [4.435966505337296, -0.004316196243433855], [4.435978931893208, -0.004316402140826643], [4.412801184878861, -0.004246072924806092], [4.375813910081497, -0.004135654566896561], [4.357101135731113, -0.0032216037939867]], [[4.357101135731113, -0.0032216037939867], [4.300646268373049, -0.003096276879111749], [4.273594175166907, -0.003038809726237774], [4.194060901546434, -0.0028705495057117503], [4.194162133925624, -0.0028717278186976133], [4.150315511196655, -0.0027805953833012096], [4.081723351223629, -0.0026432285636224075], [4.045986777615613, -0.0025731729906125016]], [[4.045986777615613, -0.0025731729906125016], [3.989616192014998, -0.002464082682474564], [3.9627153625583476, -0.002414416830692237], [3.88383947261575, -0.002269299248605758], [3.8839555850780205, -0.0022704798739682404], [3.840643462498419, -0.0021921558411269327], [3.773188551427283, -0.002074959827781218], [3.7381768799196657, -0.002015431690364884]], [[3.7381768799196657, -0.002015431690364884], [3.7074278339116145, -0.001963732259230337], [3.6924829277027147, -0.0019392718576379535], [3.6483200770896187, -0.0018671762815629398], [3.64834225166872, -0.0018673716274296946], [3.62375082298653, -0.0018277362032107275], [3.5848228253547156, -0.001766214362317539], [3.5640262223429855, -0.0020357243542857674]], [[3.5640262223429855, -0.0020357243542857674], [3.507099789111682, -0.0019284564009821642], [3.4802408961990934, -0.0018805349036280703], [3.4021303227429307, -0.001741361358417767], [3.4022898857691137, -0.001742947678206623], [3.3598984361583843, -0.0016685105801827285], [3.2947560938991085, -0.001559373466183131], [3.2613357490124577, -0.0015045209028288161]], [[3.2613357490124577, -0.0015045209028288161], [3.2173799045484213, -0.0014331712645716088], [3.196561598001413, -0.0014008154007465223], [3.136114439066021, -0.0013066290030042448], [3.136207217211904, -0.0013074162992283312], [3.1034272827268463, -0.0012567896745957605], [3.053040208956893, -0.0011813626729107495], [3.0272308632442684, -0.001143166114062419]], [[3.0272308632442684, -0.001143166114062419], [2.9802177892206636, -0.0010737329134532436], [2.95860764093696, -0.00102422356658009], [2.8971602935121714, -0.0009421440787777119], [2.8973377888692746, -0.0009316133653389742], [2.8648742685719215, -0.0008977660882478135], [2.816631446881056, -0.0008297855514078819], [2.7927091078344954, -0.0007966913578614131]], [[2.7927091078344954, -0.0007966913578614131], [2.773339004750415, -0.0007693231078154343], [2.764162798830998, -0.0007564279698503649], [2.737934207404356, -0.0007184440484345846], [2.7379516212882007, -0.0007185666219360087], [2.7239838321447722, -0.0006976954690951345], [2.7029186941456085, -0.0006653295306399016], [2.6923952075770847, -0.0006485105572121291]], [[2.6923952075770847, -0.0006485105572121291], [2.6653297897000154, -0.0006018780341331955], [2.653913383506927, -0.0005808327859633092], [2.626970947156453, -0.000504710816595192], [2.6270214891969084, -0.0005066488854029423], [2.6169401201161824, -0.0004701027089970166], [2.6094834537887377, -0.0004148494297663976], [2.610342388888821, -0.00038600467123496985]]], true, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}([18.874387576343523, 0.001440474399021169], [18.225335345031905, 0.001566518920140703], [2.6923952075770847, -0.0006485105572121291], [2.6653297897000154, -0.0006018780341331955], [2.653913383506927, -0.0005808327859633092], [2.626970947156453, -0.000504710816595192], [2.6270214891969084, -0.0005066488854029423], [2.6169401201161824, -0.0004701027089970166], [2.6094834537887377, -0.0004148494297663976], [2.610342388888821, -0.00038600467123496985], [-1.9076895059653132e-5, -2.2577541250333436e-6], [18.79403111809633, 0.0014520603030995123], [-0.0010106756739428312, -0.8796951026994836], OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}(0.16666666666666666, 0.0625, 0.1875, 0.25, -0.75, -0.75, 3.75, -3.0, 0.5, 0.26895043731778423, -0.7084548104956269, 0.8658892128279884, 0.15462307371928363, 0.06184922948771345, -0.02947695035460993, 0.18500664893617022, 0.4802345261121857, -0.5337849069148937, -0.013090093085106383, 0.7861107753062541, 0.08783068783068783, 0.3006060606060606, 0.22777777777777777, 0.027777777777777776, 0.06218596218596219, 0.2938217338217338, 0.16666666666666666, 0.25, 0.5, 0.5, 0.6428571428571429, 0.875, -0.19894179894179895, 0.9115151515151515, -1.9777777777777779, -0.1111111111111111, 1.67013727013727, -0.2938217338217338, 1.892063492063492, -6.067155067155067, 7.282458282458283, -4.0195360195360195, -7.214545454545455, 20.676923076923078, -20.31142191142191, 7.14965034965035, 7.866666666666666, -18.78205128205128, 13.508547008547009, -2.3653846153846154, 2.0, -5.294871794871795, 4.534188034188034, -1.2115384615384615, -1.4924630924630924, 1.5785667324128863, 1.1958838881915805, -1.219801565955412, -7.051721611721612, 16.273203719357564, -11.978886071193763, 3.0512256973795435, 4.0, -8.384615384615385, 5.769230769230769, -1.3846153846153846))), true, 0, DiffEqBase.DEStats
Number of function 1 evaluations: 1123
Number of function 2 evaluations: 0
Number of W matrix evaluations: 0
Number of linear solves: 0
Number of Jacobians created: 0
Number of nonlinear solver iterations: 0
Number of nonlinear solver convergence failures: 0
Number of rootfind condition calls: 0
Number of accepted steps: 59
Number of rejected steps: 101, :Success), SciMLBase.ODESolution{Float64, 2, Vector{Vector{Float64}}, Nothing, Nothing, Vector{Float64}, Vector{Vector{Vector{Float64}}}, SciMLBase.ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Any}, SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}, SciMLBase.StandardODEProblem}, OwrenZen5, OrdinaryDiffEq.InterpolationData{SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}}, DiffEqBase.DEStats}([[0.0, 0.0], [0.006348893329642043, 5.872978072520741e-5], [0.06983223690683583, 0.0006459217970974729], [0.7041103281064195, 0.006507413417506703], [1.7053213081927203, 0.015740618970745104], [1.85533418430308, 0.01709830812908076], [1.927881946993041, 0.017725548190358924], [2.6481059105390012, 0.02382459112360276], [3.230999541000247, 0.028819184108940375], [3.481525895395224, 0.03094873862020591] … [17.648631846522512, 0.0023766370252157006], [18.138309928378167, 0.002096101707635277], [18.534807062477604, 0.0019099651780773294], [18.822644204303568, 0.0017930406510596115], [19.477583088404874, 0.0015772751212554828], [19.80401134800359, 0.0014917973266057683], [20.445499731104494, 0.0013546637987648922], [20.791486313043926, 0.001295361160047449], [21.77367507604361, 0.0011881105087857113], [21.812356645433088, 0.001186022591702791]], nothing, nothing, [0.0, 9.999999999999999e-5, 0.0010999999999999998, 0.011099999999999997, 0.026917234884383898, 0.029290666569648124, 0.030439891123116486, 0.041932136657800115, 0.05133004180773856, 0.05538733307995336 … 0.7761419068800298, 0.8831526861635914, 0.9790893845820857, 1.054093642767989, 1.2416571357058626, 1.3436345799823948, 1.5587277949086864, 1.6812942969880886, 2.0363888053998216, 2.05], [[[0.0, 0.0]], [[63.48944180024921, 0.5873074385569376], [63.48927229106918, 0.5873042278045792], [63.48918753845973, 0.5873026225080273], [63.48893328852011, 0.5872978069348898], [63.48893328852011, 0.5872978069348898], [63.48878800816129, 0.5872950553924321], [63.488551935830486, 0.5872905844672642], [63.48842482419216, 0.587288177215932]], [[63.48842482419216, 0.587288177215932], [63.48673028508998, 0.5872560918750084], [63.48588321349149, 0.5872400571636772], [63.483342787524315, 0.5871919846730217], [63.483342787524315, 0.5871919846730221], [63.481891647376045, 0.587164536027649], [63.47953436944732, 0.5871199650871826], [63.47826536894199, 0.5870959800736784]], [[63.47826536894199, 0.5870959800736784], [63.46137233639779, 0.5867772897527773], [63.452944373271976, 0.5866187167697764], [63.42773480960781, 0.5861460777285465], [63.42773480960715, 0.5861460777286419], [63.413379257820345, 0.5858780729857436], [63.390129500053106, 0.5854457949796643], [63.377650343363094, 0.5852146854719092]], [[63.377650343363094, 0.5852146854719092], [63.35142402572904, 0.5847310856975614], [63.338352644647934, 0.584489817637093], [63.29894685122337, 0.5837514378792094], [63.298946853202764, 0.5837514380452565], [63.27627338072661, 0.583324148985842], [63.23918689912698, 0.5826214876146618], [63.21909260542223, 0.5822388552846551]], [[63.21909260542223, 0.5822388552846551], [63.21506173774452, 0.5821619398064395], [63.21304501480437, 0.5821234376823585], [63.20698975063769, 0.5820077548882167], [63.20698975063782, 0.582007754888215], [63.203525909369446, 0.5819415255908822], [63.191319279269614, 0.5478973584835956], [63.16959498821218, 0.5471976099878908]], [[63.16959498821218, 0.5471976099878908], [63.15557743893997, 0.5467289370694376], [63.148573327385, 0.5464949593407484], [63.12756756514766, 0.5457934268206115], [63.12756757207689, 0.5457934281366359], [63.115571368768606, 0.5453930521715775], [63.096088333111666, 0.544743216907827], [63.085603131238, 0.5443937030789749]], [[63.085603131238, 0.5443937030789749], [62.9460432145691, 0.5397486472247469], [62.87672379012947, 0.5374614590825059], [62.669400722834766, 0.5306378930213141], [62.66940757942414, 0.5306391936293707], [62.55162439288868, 0.5267870281452329], [62.36130473942434, 0.5206031366885293], [62.25936669889173, 0.5173103881873674]], [[62.25936669889173, 0.5173103881873674], [62.14856398365674, 0.5137425459572142], [62.114696285189524, 0.5364355591058915], [62.01933279427342, 0.5332606903764192], [62.019518901332205, 0.5340522046470657], [61.964918119595715, 0.5315627243991111], [61.87666044320995, 0.5289300785457743], [61.82913023409952, 0.5274268060808728]], [[61.82913023409952, 0.5274268060808728], [61.80179645478945, 0.5265726696607589], [61.78814061688717, 0.5261466097056197], [61.7471772513293, 0.5248691638217875], [61.74717729150237, 0.5248691711716709], [61.72378149314381, 0.52414043148448], [61.68578143678957, 0.5229581461709443], [61.66532913836113, 0.5223225052906917]] … [[4.998613425458604, -0.003385410346451136], [4.974093963418496, -0.0033371122153236046], [4.9620316940348745, -0.003313734169056044], [4.926119644277166, -0.0032442776947129385], [4.926126588752984, -0.00324434734091906], [4.905893743270194, -0.0032055659004777883], [4.873474259688195, -0.0031441241269763985], [4.856241347052184, -0.0031117537961868093]], [[4.856241347052184, -0.0031117537961868093], [4.754537630703506, -0.002922418530083205], [4.707145670511748, -0.0028404021304657802], [4.5691747820783055, -0.002601672671753124], [4.569696322505017, -0.0026066763972513625], [4.494976779420172, -0.0024789326914373975], [4.3809870344346065, -0.0022981486335178027], [4.322620411940455, -0.0022081035425497364]], [[4.322620411940455, -0.0022081035425497364], [4.25504248454941, -0.0021057164967683466], [4.2230234577445005, -0.002059721593167403], [4.129334666191694, -0.0019253406227659792], [4.1295285079757065, -0.0019268556580873735], [4.078303594693674, -0.0018544852962439895], [3.998633676856283, -0.0017687628214876358], [3.957410293448254, -0.0017128184070958454]], [[3.957410293448254, -0.0017128184070958454], [3.9154901009006147, -0.00165721682843276], [3.895306413742797, -0.0016313755037646422], [3.8358982853183634, -0.0015554387337919006], [3.8359544081792727, -0.001555822508075332], [3.8031134898246752, -0.001514412082153234], [3.751556863730006, -0.0014511484733186002], [3.724630193432959, -0.0014186303601925211]], [[3.724630193432959, -0.0014186303601925211], [3.6379438930824257, -0.0013150399107549901], [3.5982412883231687, -0.0012712572105271112], [3.4842130694743663, -0.0011444854017755917], [3.484785890360299, -0.0011480316975379797], [3.4241707500376957, -0.0010805179621586774], [3.3342452044701236, -0.0009660343397388994], [3.289408921095458, -0.0009227061138448094]], [[3.289408921095458, -0.0009227061138448094], [3.258156539103856, -0.000892234904871311], [3.243176883016685, -0.0008780424510201092], [3.199405230128258, -0.0008363447857501679], [3.1994445607801962, -0.000836539997673903], [3.175463145084396, -0.000813786142993008], [3.138158337948501, -0.0007789488515266356], [3.11886025195744, -0.0007610176161393121]], [[3.11886025195744, -0.0007610176161393121], [3.0670032249213612, -0.0007125617963451178], [3.043329366141015, -0.0006913774382665924], [2.976747185088374, -0.00062976360811236], [2.9769790340946245, -0.0006308606587918453], [2.942580496489908, -0.0005978354905665092], [2.892505745641763, -0.0005606595436571402], [2.8683713933863006, -0.0005353875672821507]], [[2.8683713933863006, -0.0005353875672821507], [2.8513393663538373, -0.0005171346084036184], [2.843381802636896, -0.0005085207897604109], [2.8210552842962886, -0.000483016457582721], [2.821072942411439, -0.00048310805806484763], [2.80950237801142, -0.000469008617266906], [2.79261344810755, -0.0004470288212288274], [2.7844925998060988, -0.0004355329402536413]], [[2.7844925998060988, -0.0004355329402536413], [2.7594010655627192, -0.0003920177486598681], [2.7513861342306862, -0.00037276510480767084], [2.744435724300209, -0.0003009809589471607], [2.744502450864159, -0.00030410558300889316], [2.7545478356402913, -0.00026357618975929233], [2.796571341460732, -0.00019852379329780867], [2.834855749175614, -0.00015979148700586017]], [[2.834855749175614, -0.00015979148700586017], [2.8371501526265774, -0.00015767728479074378], [2.8383089189326944, -0.0001566180843441484], [2.8418407481212786, -0.00015341639830321904], [2.8418407265886487, -0.00015341647200506207], [2.8438944840960416, -0.00015157392456757117], [2.847287976326809, -0.00014855920091746912], [2.8491435379263397, -0.00014692532339537472]]], SciMLBase.ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Any}, SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}, SciMLBase.StandardODEProblem}(SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}(GasChromatographySimulator.odesystem_r!, LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, SciMLBase.DEFAULT_OBSERVED, nothing), [0.0, 0.0], (0.0, 2.05), Any[GasChromatographySimulator.Column(2.05, 0.000104, [0.000104], 1.04e-7, [1.04e-7], "FS5ms", "He"), GasChromatographySimulator.Program{GasChromatographySimulator.var"#gf#2"{String, Matrix{Float64}}}([0.0, 0.9200000000000003, 0.9100000000000007, 0.9199999999999986, 0.9199999999999995, 0.910000000000001, 0.9199999999999999, 0.9199999999999982, 0.9200000000000008, 0.9300000000000006 … 0.9199999999999875, 0.9100000000000108, 0.9200000000000017, 0.9099999999999966, 0.9200000000000017, 0.9099999999999966, 0.9200000000000017, 0.9099999999999966, 0.9099999999999966, 0.9200000000000017], [49.323, 48.954, 49.323, 49.077, 49.569, 49.446, 48.831, 49.323, 49.077, 49.077 … 63.099, 56.211, 51.414, 48.339, 46.74, 45.51, 44.895, 44.28, 43.911, 43.542], [354589.48, 354562.67000000004, 354589.48, 354571.61, 354607.32, 354598.4, 354553.72, 354589.48, 354571.61, 354571.61 … 355560.34, 355082.14, 354740.58, 354517.9, 354400.94, 354310.42000000004, 354264.98, 354219.43, 354192.04000000004, 354164.6], [230168.87, 230224.3, 230168.87, 230205.81999999998, 230131.96, 230150.41, 230242.79, 230168.87, 230205.81999999998, 230205.81999999998 … 228154.50999999998, 229148.40000000002, 229856.25, 230316.84999999998, 230558.51, 230745.38999999998, 230839.16, 230933.15000000002, 230989.65000000002, 231046.23], GasChromatographySimulator.var"#gf#2"{String, Matrix{Float64}}("outlet", [-2.829 0.0 2.05 -3.0; -2.46 0.0 2.05 -3.0; … ; -1.23 0.0 2.05 -3.0; -0.984 0.0 2.05 -3.0]), [-2.829 0.0 2.05 -3.0; -2.46 0.0 2.05 -3.0; … ; -1.23 0.0 2.05 -3.0; -0.984 0.0 2.05 -3.0], 2051×108 extrapolate(interpolate((0.0:0.001:2.05,::Vector{Float64}), ::Matrix{Float64}, Gridded(Linear())), Flat()) with element type Float64:
319.644 319.644 319.644 319.89 … 316.077 315.954 315.831 315.708
319.644 319.644 319.644 319.89 316.077 315.954 315.831 315.708
319.645 319.644 319.645 319.89 316.077 315.954 315.831 315.708
319.645 319.645 319.645 319.891 316.078 315.954 315.831 315.708
319.645 319.645 319.645 319.891 316.078 315.955 315.831 315.708
319.645 319.645 319.645 319.891 … 316.078 315.955 315.832 315.708
319.646 319.645 319.646 319.891 316.078 315.955 315.832 315.709
319.646 319.646 319.646 319.892 316.078 315.955 315.832 315.709
319.646 319.646 319.646 319.892 316.079 315.955 315.832 315.709
319.646 319.646 319.646 319.892 316.079 315.955 315.832 315.709
⋮ ⋱ ⋮
322.44 322.075 322.44 322.199 318.022 317.413 317.046 316.68
322.444 322.079 322.444 322.203 318.025 317.415 317.048 316.682
322.448 322.082 322.448 322.206 318.028 317.417 317.05 316.683
322.452 322.086 322.452 322.21 … 318.03 317.419 317.052 316.685
322.456 322.089 322.456 322.213 318.033 317.421 317.054 316.686
322.46 322.093 322.46 322.217 318.036 317.423 317.056 316.688
322.465 322.097 322.465 322.22 318.039 317.426 317.057 316.689
322.469 322.1 322.469 322.224 318.042 317.428 317.059 316.691
322.473 322.104 322.473 322.227 … 318.045 317.43 317.061 316.692, 108-element extrapolate(interpolate((::Vector{Float64},), ::Vector{Float64}, Gridded(Linear())), Flat()) with element type Float64:
354589.48
354562.67000000004
354589.48
354571.61
354607.32
354598.4
354553.72
354589.48
354571.61
354571.61
⋮
355082.14
354740.58
354517.9
354400.94
354310.42000000004
354264.98
354219.43
354192.04000000004
354164.6, 108-element extrapolate(interpolate((::Vector{Float64},), ::Vector{Float64}, Gridded(Linear())), Flat()) with element type Float64:
230168.87
230224.3
230168.87
230205.81999999998
230131.96
230150.41
230242.79
230168.87
230205.81999999998
230205.81999999998
⋮
229148.40000000002
229856.25
230316.84999999998
230558.51
230745.38999999998
230839.16
230933.15000000002
230989.65000000002
231046.23), GasChromatographySimulator.Substance("C11", "1120-21-4", 410.21999999999997, 33.71, 116.04, 0.001, "Leppert2020b, alkane, Grob, alkanes", 0.00011323854999018596, 0.0, 0.0), GasChromatographySimulator.Options(OwrenZen5(), 1.0e-6, 0.001, "inlet", true, false, "Blumberg", "Pressure")], Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}(), SciMLBase.StandardODEProblem()), OwrenZen5(), OrdinaryDiffEq.InterpolationData{SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}}(SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}(GasChromatographySimulator.odesystem_r!, LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, SciMLBase.DEFAULT_OBSERVED, nothing), [[0.0, 0.0], [0.006348893329642043, 5.872978072520741e-5], [0.06983223690683583, 0.0006459217970974729], [0.7041103281064195, 0.006507413417506703], [1.7053213081927203, 0.015740618970745104], [1.85533418430308, 0.01709830812908076], [1.927881946993041, 0.017725548190358924], [2.6481059105390012, 0.02382459112360276], [3.230999541000247, 0.028819184108940375], [3.481525895395224, 0.03094873862020591] … [17.648631846522512, 0.0023766370252157006], [18.138309928378167, 0.002096101707635277], [18.534807062477604, 0.0019099651780773294], [18.822644204303568, 0.0017930406510596115], [19.477583088404874, 0.0015772751212554828], [19.80401134800359, 0.0014917973266057683], [20.445499731104494, 0.0013546637987648922], [20.791486313043926, 0.001295361160047449], [21.77367507604361, 0.0011881105087857113], [21.812356645433088, 0.001186022591702791]], [0.0, 9.999999999999999e-5, 0.0010999999999999998, 0.011099999999999997, 0.026917234884383898, 0.029290666569648124, 0.030439891123116486, 0.041932136657800115, 0.05133004180773856, 0.05538733307995336 … 0.7761419068800298, 0.8831526861635914, 0.9790893845820857, 1.054093642767989, 1.2416571357058626, 1.3436345799823948, 1.5587277949086864, 1.6812942969880886, 2.0363888053998216, 2.05], [[[0.0, 0.0]], [[63.48944180024921, 0.5873074385569376], [63.48927229106918, 0.5873042278045792], [63.48918753845973, 0.5873026225080273], [63.48893328852011, 0.5872978069348898], [63.48893328852011, 0.5872978069348898], [63.48878800816129, 0.5872950553924321], [63.488551935830486, 0.5872905844672642], [63.48842482419216, 0.587288177215932]], [[63.48842482419216, 0.587288177215932], [63.48673028508998, 0.5872560918750084], [63.48588321349149, 0.5872400571636772], [63.483342787524315, 0.5871919846730217], [63.483342787524315, 0.5871919846730221], [63.481891647376045, 0.587164536027649], [63.47953436944732, 0.5871199650871826], [63.47826536894199, 0.5870959800736784]], [[63.47826536894199, 0.5870959800736784], [63.46137233639779, 0.5867772897527773], [63.452944373271976, 0.5866187167697764], [63.42773480960781, 0.5861460777285465], [63.42773480960715, 0.5861460777286419], [63.413379257820345, 0.5858780729857436], [63.390129500053106, 0.5854457949796643], [63.377650343363094, 0.5852146854719092]], [[63.377650343363094, 0.5852146854719092], [63.35142402572904, 0.5847310856975614], [63.338352644647934, 0.584489817637093], [63.29894685122337, 0.5837514378792094], [63.298946853202764, 0.5837514380452565], [63.27627338072661, 0.583324148985842], [63.23918689912698, 0.5826214876146618], [63.21909260542223, 0.5822388552846551]], [[63.21909260542223, 0.5822388552846551], [63.21506173774452, 0.5821619398064395], [63.21304501480437, 0.5821234376823585], [63.20698975063769, 0.5820077548882167], [63.20698975063782, 0.582007754888215], [63.203525909369446, 0.5819415255908822], [63.191319279269614, 0.5478973584835956], [63.16959498821218, 0.5471976099878908]], [[63.16959498821218, 0.5471976099878908], [63.15557743893997, 0.5467289370694376], [63.148573327385, 0.5464949593407484], [63.12756756514766, 0.5457934268206115], [63.12756757207689, 0.5457934281366359], [63.115571368768606, 0.5453930521715775], [63.096088333111666, 0.544743216907827], [63.085603131238, 0.5443937030789749]], [[63.085603131238, 0.5443937030789749], [62.9460432145691, 0.5397486472247469], [62.87672379012947, 0.5374614590825059], [62.669400722834766, 0.5306378930213141], [62.66940757942414, 0.5306391936293707], [62.55162439288868, 0.5267870281452329], [62.36130473942434, 0.5206031366885293], [62.25936669889173, 0.5173103881873674]], [[62.25936669889173, 0.5173103881873674], [62.14856398365674, 0.5137425459572142], [62.114696285189524, 0.5364355591058915], [62.01933279427342, 0.5332606903764192], [62.019518901332205, 0.5340522046470657], [61.964918119595715, 0.5315627243991111], [61.87666044320995, 0.5289300785457743], [61.82913023409952, 0.5274268060808728]], [[61.82913023409952, 0.5274268060808728], [61.80179645478945, 0.5265726696607589], [61.78814061688717, 0.5261466097056197], [61.7471772513293, 0.5248691638217875], [61.74717729150237, 0.5248691711716709], [61.72378149314381, 0.52414043148448], [61.68578143678957, 0.5229581461709443], [61.66532913836113, 0.5223225052906917]] … [[4.998613425458604, -0.003385410346451136], [4.974093963418496, -0.0033371122153236046], [4.9620316940348745, -0.003313734169056044], [4.926119644277166, -0.0032442776947129385], [4.926126588752984, -0.00324434734091906], [4.905893743270194, -0.0032055659004777883], [4.873474259688195, -0.0031441241269763985], [4.856241347052184, -0.0031117537961868093]], [[4.856241347052184, -0.0031117537961868093], [4.754537630703506, -0.002922418530083205], [4.707145670511748, -0.0028404021304657802], [4.5691747820783055, -0.002601672671753124], [4.569696322505017, -0.0026066763972513625], [4.494976779420172, -0.0024789326914373975], [4.3809870344346065, -0.0022981486335178027], [4.322620411940455, -0.0022081035425497364]], [[4.322620411940455, -0.0022081035425497364], [4.25504248454941, -0.0021057164967683466], [4.2230234577445005, -0.002059721593167403], [4.129334666191694, -0.0019253406227659792], [4.1295285079757065, -0.0019268556580873735], [4.078303594693674, -0.0018544852962439895], [3.998633676856283, -0.0017687628214876358], [3.957410293448254, -0.0017128184070958454]], [[3.957410293448254, -0.0017128184070958454], [3.9154901009006147, -0.00165721682843276], [3.895306413742797, -0.0016313755037646422], [3.8358982853183634, -0.0015554387337919006], [3.8359544081792727, -0.001555822508075332], [3.8031134898246752, -0.001514412082153234], [3.751556863730006, -0.0014511484733186002], [3.724630193432959, -0.0014186303601925211]], [[3.724630193432959, -0.0014186303601925211], [3.6379438930824257, -0.0013150399107549901], [3.5982412883231687, -0.0012712572105271112], [3.4842130694743663, -0.0011444854017755917], [3.484785890360299, -0.0011480316975379797], [3.4241707500376957, -0.0010805179621586774], [3.3342452044701236, -0.0009660343397388994], [3.289408921095458, -0.0009227061138448094]], [[3.289408921095458, -0.0009227061138448094], [3.258156539103856, -0.000892234904871311], [3.243176883016685, -0.0008780424510201092], [3.199405230128258, -0.0008363447857501679], [3.1994445607801962, -0.000836539997673903], [3.175463145084396, -0.000813786142993008], [3.138158337948501, -0.0007789488515266356], [3.11886025195744, -0.0007610176161393121]], [[3.11886025195744, -0.0007610176161393121], [3.0670032249213612, -0.0007125617963451178], [3.043329366141015, -0.0006913774382665924], [2.976747185088374, -0.00062976360811236], [2.9769790340946245, -0.0006308606587918453], [2.942580496489908, -0.0005978354905665092], [2.892505745641763, -0.0005606595436571402], [2.8683713933863006, -0.0005353875672821507]], [[2.8683713933863006, -0.0005353875672821507], [2.8513393663538373, -0.0005171346084036184], [2.843381802636896, -0.0005085207897604109], [2.8210552842962886, -0.000483016457582721], [2.821072942411439, -0.00048310805806484763], [2.80950237801142, -0.000469008617266906], [2.79261344810755, -0.0004470288212288274], [2.7844925998060988, -0.0004355329402536413]], [[2.7844925998060988, -0.0004355329402536413], [2.7594010655627192, -0.0003920177486598681], [2.7513861342306862, -0.00037276510480767084], [2.744435724300209, -0.0003009809589471607], [2.744502450864159, -0.00030410558300889316], [2.7545478356402913, -0.00026357618975929233], [2.796571341460732, -0.00019852379329780867], [2.834855749175614, -0.00015979148700586017]], [[2.834855749175614, -0.00015979148700586017], [2.8371501526265774, -0.00015767728479074378], [2.8383089189326944, -0.0001566180843441484], [2.8418407481212786, -0.00015341639830321904], [2.8418407265886487, -0.00015341647200506207], [2.8438944840960416, -0.00015157392456757117], [2.847287976326809, -0.00014855920091746912], [2.8491435379263397, -0.00014692532339537472]]], true, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}([21.812356645433088, 0.001186022591702791], [21.77367507604361, 0.0011881105087857113], [2.834855749175614, -0.00015979148700586017], [2.8371501526265774, -0.00015767728479074378], [2.8383089189326944, -0.0001566180843441484], [2.8418407481212786, -0.00015341639830321904], [2.8418407265886487, -0.00015341647200506207], [2.8438944840960416, -0.00015157392456757117], [2.847287976326809, -0.00014855920091746912], [2.8491435379263397, -0.00014692532339537472], [-2.6978882925484385e-9, -9.750369978491042e-13], [21.807510697132315, 0.0011862739653600526], [-1.2368056582952704e-7, -4.4560683472527147e-7], OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}(0.16666666666666666, 0.0625, 0.1875, 0.25, -0.75, -0.75, 3.75, -3.0, 0.5, 0.26895043731778423, -0.7084548104956269, 0.8658892128279884, 0.15462307371928363, 0.06184922948771345, -0.02947695035460993, 0.18500664893617022, 0.4802345261121857, -0.5337849069148937, -0.013090093085106383, 0.7861107753062541, 0.08783068783068783, 0.3006060606060606, 0.22777777777777777, 0.027777777777777776, 0.06218596218596219, 0.2938217338217338, 0.16666666666666666, 0.25, 0.5, 0.5, 0.6428571428571429, 0.875, -0.19894179894179895, 0.9115151515151515, -1.9777777777777779, -0.1111111111111111, 1.67013727013727, -0.2938217338217338, 1.892063492063492, -6.067155067155067, 7.282458282458283, -4.0195360195360195, -7.214545454545455, 20.676923076923078, -20.31142191142191, 7.14965034965035, 7.866666666666666, -18.78205128205128, 13.508547008547009, -2.3653846153846154, 2.0, -5.294871794871795, 4.534188034188034, -1.2115384615384615, -1.4924630924630924, 1.5785667324128863, 1.1958838881915805, -1.219801565955412, -7.051721611721612, 16.273203719357564, -11.978886071193763, 3.0512256973795435, 4.0, -8.384615384615385, 5.769230769230769, -1.3846153846153846))), true, 0, DiffEqBase.DEStats
Number of function 1 evaluations: 1046
Number of function 2 evaluations: 0
Number of W matrix evaluations: 0
Number of linear solves: 0
Number of Jacobians created: 0
Number of nonlinear solver iterations: 0
Number of nonlinear solver convergence failures: 0
Number of rootfind condition calls: 0
Number of accepted steps: 64
Number of rejected steps: 85, :Success), SciMLBase.ODESolution{Float64, 2, Vector{Vector{Float64}}, Nothing, Nothing, Vector{Float64}, Vector{Vector{Vector{Float64}}}, SciMLBase.ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Any}, SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}, SciMLBase.StandardODEProblem}, OwrenZen5, OrdinaryDiffEq.InterpolationData{SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}}, DiffEqBase.DEStats}([[0.0, 0.0], [0.01569993083506815, 0.00037666443130964525], [0.1726849939173762, 0.004142590340037787], [1.7411442328872573, 0.041735069475743486], [1.8602380244460217, 0.04453257521996012], [1.938565432785629, 0.046280915027591275], [2.7156458428734047, 0.06321439734000465], [3.1928287851830794, 0.07379062508521331], [3.398160640322698, 0.07831696878617586], [3.6837521651658, 0.08456835511438762] … [20.4011999947631, 0.0017903235460618176], [20.607821258883252, 0.0017179404029568975], [21.266078596855053, 0.0015236595020038915], [21.769932392121945, 0.0014009390623205646], [22.322500201372875, 0.0012947407855413283], [22.645117705968225, 0.0012449904638088202], [23.21852602273237, 0.0011711345603763797], [23.495518696173423, 0.0011412598109116355], [24.02243770512728, 0.0010988241358716312], [24.278869576587837, 0.0010918481202571294]], nothing, nothing, [0.0, 9.999999999999999e-5, 0.0010999999999999998, 0.011099999999999997, 0.011860010665908883, 0.012360485672584985, 0.017365235739346004, 0.02046876668180208, 0.021808721538097774, 0.02367692679763544 … 0.8486183438712822, 0.8982343789543212, 1.0705176422645544, 1.2168660555066093, 1.3905647378318233, 1.49720139503342, 1.6928419738547498, 1.7884033409422522, 1.967000823060525, 2.05], [[[0.0, 0.0]], [[157.00060580177686, 3.766709864586591], [157.000173262894, 3.7666880085846017], [156.99995700727538, 3.7666770819644126], [156.9993082955186, 3.766644307594834], [156.99930829551855, 3.7666443075948326], [156.9989376402369, 3.7666255830888393], [156.99833538302903, 3.7665951615137137], [156.99801112023533, 3.766578783612664]], [[156.99801112023533, 3.766578783612664], [156.993689590836, 3.7663606083706895], [156.9915302080248, 3.766251658781082], [156.98505756833654, 3.765925358909972], [156.98505756833657, 3.7659253589099935], [156.98136263067698, 3.7657392721413703], [156.9753641163602, 3.765437455394042], [156.97213677920098, 3.765275217830498]], [[156.97213677920098, 3.765275217830498], [156.92929966520614, 3.7631315630191358], [156.9080160424852, 3.762073374323619], [156.84493373323957, 3.759256125572316], [156.84493373677878, 3.7592561352612135], [156.810177850467, 3.7576157588851613], [156.7530965383386, 3.7548937949323733], [156.72205036738373, 3.7533991652306677]], [[156.72205036738373, 3.7533991652306677], [156.7188920404441, 3.753246566525361], [156.7173120591955, 3.7531701901440484], [156.71256884630475, 3.752940753412953], [156.71256884630483, 3.752940753412956], [156.7098562370744, 3.752809439476813], [156.6632171628197, 3.507333097922601], [156.61995573560918, 3.5036049339014284]], [[156.61995573560918, 3.5036049339014284], [156.5819805259609, 3.5001833306672885], [156.56300703818906, 3.498475502823076], [156.5061034971862, 3.4933549555011094], [156.50610352434694, 3.49335496911024], [156.47360758408303, 3.490432917287226], [156.4208333734958, 3.485690782679454], [156.39243270114105, 3.483140485807471]], [[156.39243270114105, 3.483140485807471], [156.01440650945162, 3.449249085075241], [155.8267910329352, 3.4325962204577674], [155.26562055820463, 3.382914476247137], [155.2656471877048, 3.3829279023653545], [154.94694481277068, 3.3549084856992337], [154.43215847947857, 3.3099834751450143], [154.15651689182272, 3.2860855512830973]], [[154.15651689182272, 3.2860855512830973], [153.99018799569944, 3.4435839468003495], [153.9302738491955, 3.4381962643531048], [153.75053436359812, 3.4227550156989826], [153.75072875677765, 3.4213542338017437], [153.6479946240361, 3.41384153831753], [153.48166648253584, 3.398948271894439], [153.39217092576604, 3.391344702432332]], [[153.39217092576604, 3.391344702432332], [153.34069470474512, 3.38687966200741], [153.31497864927937, 3.384652001406846], [153.2378487137505, 3.377973070418565], [153.2378487767221, 3.3779731010672958], [153.19380228735594, 3.3741627048860257], [153.1222704699981, 3.36798044244745], [153.08377567571105, 3.364656430246826]], [[153.08377567571105, 3.364656430246826], [153.01224111438088, 3.3584829830185905], [152.9765161848473, 3.3554055904065025], [152.86937737519293, 3.346181244249916], [152.86937754219517, 3.3461813258881503], [152.8082095718522, 3.3409220863864473], [152.70889484209542, 3.3323942672838482], [152.72948504586606, 4.241940191798537]] … [[4.635792194525275, -0.001933163897353372], [4.565820810083812, -0.0018507667162491605], [4.532631858580128, -0.0018135515122112836], [4.435420261566321, -0.001704458048083889], [4.4356181959574625, -0.0017056242732005965], [4.382398859105627, -0.0016466153322956469], [4.298889365567633, -0.0016024619894250021], [4.2556793347367945, -0.0015545293861022225]], [[4.2556793347367945, -0.0015545293861022225], [4.22419382713133, -0.0015208246976078374], [4.208864563836217, -0.0015047970775866498], [4.163482434658898, -0.0014573800384003724], [4.163504324358528, -0.0014574974485240097], [4.138174876805206, -0.0014312950626992683], [4.097986471812565, -0.0013903945407386792], [4.076808537189057, -0.0013690735508266707]], [[4.076808537189057, -0.0013690735508266707], [3.981733403253044, -0.001274020768798676], [3.938184310918683, -0.0012337660932633392], [3.8127843946362407, -0.0011166691160847118], [3.8134528633918436, -0.001120043223990264], [3.746596031800414, -0.001057344017024349], [3.6467408563989223, -0.000971140040043306], [3.595523444445574, -0.0009716851010130015]], [[3.595523444445574, -0.0009716851010130015], [3.539897541150129, -0.0009215366349613731], [3.513888105053813, -0.0008992122520615838], [3.4387631055616943, -0.0008340643247287665], [3.438957233954697, -0.0008349427289206192], [3.3986052967112075, -0.0007999161056196408], [3.3373913932314028, -0.0007486842343547645], [3.3063606648155974, -0.0007228572042194373]], [[3.3063606648155974, -0.0007228572042194373], [3.259566506043085, -0.0006837847072236642], [3.2379323354009277, -0.0006663842827860347], [3.176406569713378, -0.0006155461249925245], [3.176574913663839, -0.0006162404428999683], [3.144237643649723, -0.0005888415230996192], [3.0976724101919704, -0.0005229098755120844], [3.07460812319358, -0.0005060701500449122]], [[3.07460812319358, -0.0005060701500449122], [3.0567238548337734, -0.0004920983763978693], [3.048249276973094, -0.000485489205505144], [3.0239922382173106, -0.0004659134167257008], [3.0240097415646296, -0.0004659786498555482], [3.011072858661633, -0.00045515598044886885], [2.991535496327331, -0.00043828666760789786], [2.981758332960257, -0.00042947880907972125]], [[2.981758332960257, -0.00042947880907972125], [2.9598906830287697, -0.00040837832042802465], [2.950384988187155, -0.00039869689349933944], [2.9261827767014092, -0.0003698464163604569], [2.926241756349553, -0.00037013005388421294], [2.9156845335010693, -0.0003541032251659649], [2.903172819423448, -0.0003518852847982541], [2.899065829737911, -0.00033797430854726554]], [[2.899065829737911, -0.00033797430854726554], [2.8974995604816898, -0.0003293980987853297], [2.8970645034716127, -0.0003252228682151083], [2.897137558456482, -0.00031258546862341556], [2.8971378420516594, -0.00031260817029137825], [2.898146351209863, -0.00030539478213668925], [2.901346059841657, -0.0002937168033251803], [2.903896665233836, -0.00028740840811574406]], [[2.903896665233836, -0.00028740840811574406], [2.912949376827389, -0.0002713684023426011], [2.9188785849739016, -0.0002635363816366152], [2.9432319638759097, -0.00023869545474719458], [2.943196448977906, -0.00023885115004657607], [2.9618120460476645, -0.00022382839273308338], [3.00008691881002, -0.00019814035826263773], [3.0264801082507304, -0.00012071025993688755]], [[3.0264801082507304, -0.00012071025993688755], [3.04516278975697, -0.00010931030670676279], [3.054994110466925, -0.00010351237649240544], [3.0870265327871884, -8.503819528399737e-5], [3.087017033624382, -8.5061827139303e-5], [3.1070219573151623, -7.383235111679582e-5], [3.142327166806384, -5.447767869384021e-5], [3.1628676362144206, -4.3397629554834836e-5]]], SciMLBase.ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Any}, SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}, SciMLBase.StandardODEProblem}(SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}(GasChromatographySimulator.odesystem_r!, LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, SciMLBase.DEFAULT_OBSERVED, nothing), [0.0, 0.0], (0.0, 2.05), Any[GasChromatographySimulator.Column(2.05, 0.000104, [0.000104], 1.04e-7, [1.04e-7], "FS5ms", "He"), GasChromatographySimulator.Program{GasChromatographySimulator.var"#gf#2"{String, Matrix{Float64}}}([0.0, 0.9200000000000003, 0.9100000000000007, 0.9199999999999986, 0.9199999999999995, 0.910000000000001, 0.9199999999999999, 0.9199999999999982, 0.9200000000000008, 0.9300000000000006 … 0.9199999999999875, 0.9100000000000108, 0.9200000000000017, 0.9099999999999966, 0.9200000000000017, 0.9099999999999966, 0.9200000000000017, 0.9099999999999966, 0.9099999999999966, 0.9200000000000017], [49.323, 48.954, 49.323, 49.077, 49.569, 49.446, 48.831, 49.323, 49.077, 49.077 … 63.099, 56.211, 51.414, 48.339, 46.74, 45.51, 44.895, 44.28, 43.911, 43.542], [354589.48, 354562.67000000004, 354589.48, 354571.61, 354607.32, 354598.4, 354553.72, 354589.48, 354571.61, 354571.61 … 355560.34, 355082.14, 354740.58, 354517.9, 354400.94, 354310.42000000004, 354264.98, 354219.43, 354192.04000000004, 354164.6], [230168.87, 230224.3, 230168.87, 230205.81999999998, 230131.96, 230150.41, 230242.79, 230168.87, 230205.81999999998, 230205.81999999998 … 228154.50999999998, 229148.40000000002, 229856.25, 230316.84999999998, 230558.51, 230745.38999999998, 230839.16, 230933.15000000002, 230989.65000000002, 231046.23], GasChromatographySimulator.var"#gf#2"{String, Matrix{Float64}}("outlet", [-2.829 0.0 2.05 -3.0; -2.46 0.0 2.05 -3.0; … ; -1.23 0.0 2.05 -3.0; -0.984 0.0 2.05 -3.0]), [-2.829 0.0 2.05 -3.0; -2.46 0.0 2.05 -3.0; … ; -1.23 0.0 2.05 -3.0; -0.984 0.0 2.05 -3.0], 2051×108 extrapolate(interpolate((0.0:0.001:2.05,::Vector{Float64}), ::Matrix{Float64}, Gridded(Linear())), Flat()) with element type Float64:
319.644 319.644 319.644 319.89 … 316.077 315.954 315.831 315.708
319.644 319.644 319.644 319.89 316.077 315.954 315.831 315.708
319.645 319.644 319.645 319.89 316.077 315.954 315.831 315.708
319.645 319.645 319.645 319.891 316.078 315.954 315.831 315.708
319.645 319.645 319.645 319.891 316.078 315.955 315.831 315.708
319.645 319.645 319.645 319.891 … 316.078 315.955 315.832 315.708
319.646 319.645 319.646 319.891 316.078 315.955 315.832 315.709
319.646 319.646 319.646 319.892 316.078 315.955 315.832 315.709
319.646 319.646 319.646 319.892 316.079 315.955 315.832 315.709
319.646 319.646 319.646 319.892 316.079 315.955 315.832 315.709
⋮ ⋱ ⋮
322.44 322.075 322.44 322.199 318.022 317.413 317.046 316.68
322.444 322.079 322.444 322.203 318.025 317.415 317.048 316.682
322.448 322.082 322.448 322.206 318.028 317.417 317.05 316.683
322.452 322.086 322.452 322.21 … 318.03 317.419 317.052 316.685
322.456 322.089 322.456 322.213 318.033 317.421 317.054 316.686
322.46 322.093 322.46 322.217 318.036 317.423 317.056 316.688
322.465 322.097 322.465 322.22 318.039 317.426 317.057 316.689
322.469 322.1 322.469 322.224 318.042 317.428 317.059 316.691
322.473 322.104 322.473 322.227 … 318.045 317.43 317.061 316.692, 108-element extrapolate(interpolate((::Vector{Float64},), ::Vector{Float64}, Gridded(Linear())), Flat()) with element type Float64:
354589.48
354562.67000000004
354589.48
354571.61
354607.32
354598.4
354553.72
354589.48
354571.61
354571.61
⋮
355082.14
354740.58
354517.9
354400.94
354310.42000000004
354264.98
354219.43
354192.04000000004
354164.6, 108-element extrapolate(interpolate((::Vector{Float64},), ::Vector{Float64}, Gridded(Linear())), Flat()) with element type Float64:
230168.87
230224.3
230168.87
230205.81999999998
230131.96
230150.41
230242.79
230168.87
230205.81999999998
230205.81999999998
⋮
229148.40000000002
229856.25
230316.84999999998
230558.51
230745.38999999998
230839.16
230933.15000000002
230989.65000000002
231046.23), GasChromatographySimulator.Substance("C12", "112-40-3", 427.92999999999995, 34.92, 121.44, 0.001, "Leppert2020b, alkane, alkanes", 0.00010831148421185742, 0.0, 0.0), GasChromatographySimulator.Options(OwrenZen5(), 1.0e-6, 0.001, "inlet", true, false, "Blumberg", "Pressure")], Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}(), SciMLBase.StandardODEProblem()), OwrenZen5(), OrdinaryDiffEq.InterpolationData{SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}}(SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}(GasChromatographySimulator.odesystem_r!, LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, SciMLBase.DEFAULT_OBSERVED, nothing), [[0.0, 0.0], [0.01569993083506815, 0.00037666443130964525], [0.1726849939173762, 0.004142590340037787], [1.7411442328872573, 0.041735069475743486], [1.8602380244460217, 0.04453257521996012], [1.938565432785629, 0.046280915027591275], [2.7156458428734047, 0.06321439734000465], [3.1928287851830794, 0.07379062508521331], [3.398160640322698, 0.07831696878617586], [3.6837521651658, 0.08456835511438762] … [20.4011999947631, 0.0017903235460618176], [20.607821258883252, 0.0017179404029568975], [21.266078596855053, 0.0015236595020038915], [21.769932392121945, 0.0014009390623205646], [22.322500201372875, 0.0012947407855413283], [22.645117705968225, 0.0012449904638088202], [23.21852602273237, 0.0011711345603763797], [23.495518696173423, 0.0011412598109116355], [24.02243770512728, 0.0010988241358716312], [24.278869576587837, 0.0010918481202571294]], [0.0, 9.999999999999999e-5, 0.0010999999999999998, 0.011099999999999997, 0.011860010665908883, 0.012360485672584985, 0.017365235739346004, 0.02046876668180208, 0.021808721538097774, 0.02367692679763544 … 0.8486183438712822, 0.8982343789543212, 1.0705176422645544, 1.2168660555066093, 1.3905647378318233, 1.49720139503342, 1.6928419738547498, 1.7884033409422522, 1.967000823060525, 2.05], [[[0.0, 0.0]], [[157.00060580177686, 3.766709864586591], [157.000173262894, 3.7666880085846017], [156.99995700727538, 3.7666770819644126], [156.9993082955186, 3.766644307594834], [156.99930829551855, 3.7666443075948326], [156.9989376402369, 3.7666255830888393], [156.99833538302903, 3.7665951615137137], [156.99801112023533, 3.766578783612664]], [[156.99801112023533, 3.766578783612664], [156.993689590836, 3.7663606083706895], [156.9915302080248, 3.766251658781082], [156.98505756833654, 3.765925358909972], [156.98505756833657, 3.7659253589099935], [156.98136263067698, 3.7657392721413703], [156.9753641163602, 3.765437455394042], [156.97213677920098, 3.765275217830498]], [[156.97213677920098, 3.765275217830498], [156.92929966520614, 3.7631315630191358], [156.9080160424852, 3.762073374323619], [156.84493373323957, 3.759256125572316], [156.84493373677878, 3.7592561352612135], [156.810177850467, 3.7576157588851613], [156.7530965383386, 3.7548937949323733], [156.72205036738373, 3.7533991652306677]], [[156.72205036738373, 3.7533991652306677], [156.7188920404441, 3.753246566525361], [156.7173120591955, 3.7531701901440484], [156.71256884630475, 3.752940753412953], [156.71256884630483, 3.752940753412956], [156.7098562370744, 3.752809439476813], [156.6632171628197, 3.507333097922601], [156.61995573560918, 3.5036049339014284]], [[156.61995573560918, 3.5036049339014284], [156.5819805259609, 3.5001833306672885], [156.56300703818906, 3.498475502823076], [156.5061034971862, 3.4933549555011094], [156.50610352434694, 3.49335496911024], [156.47360758408303, 3.490432917287226], [156.4208333734958, 3.485690782679454], [156.39243270114105, 3.483140485807471]], [[156.39243270114105, 3.483140485807471], [156.01440650945162, 3.449249085075241], [155.8267910329352, 3.4325962204577674], [155.26562055820463, 3.382914476247137], [155.2656471877048, 3.3829279023653545], [154.94694481277068, 3.3549084856992337], [154.43215847947857, 3.3099834751450143], [154.15651689182272, 3.2860855512830973]], [[154.15651689182272, 3.2860855512830973], [153.99018799569944, 3.4435839468003495], [153.9302738491955, 3.4381962643531048], [153.75053436359812, 3.4227550156989826], [153.75072875677765, 3.4213542338017437], [153.6479946240361, 3.41384153831753], [153.48166648253584, 3.398948271894439], [153.39217092576604, 3.391344702432332]], [[153.39217092576604, 3.391344702432332], [153.34069470474512, 3.38687966200741], [153.31497864927937, 3.384652001406846], [153.2378487137505, 3.377973070418565], [153.2378487767221, 3.3779731010672958], [153.19380228735594, 3.3741627048860257], [153.1222704699981, 3.36798044244745], [153.08377567571105, 3.364656430246826]], [[153.08377567571105, 3.364656430246826], [153.01224111438088, 3.3584829830185905], [152.9765161848473, 3.3554055904065025], [152.86937737519293, 3.346181244249916], [152.86937754219517, 3.3461813258881503], [152.8082095718522, 3.3409220863864473], [152.70889484209542, 3.3323942672838482], [152.72948504586606, 4.241940191798537]] … [[4.635792194525275, -0.001933163897353372], [4.565820810083812, -0.0018507667162491605], [4.532631858580128, -0.0018135515122112836], [4.435420261566321, -0.001704458048083889], [4.4356181959574625, -0.0017056242732005965], [4.382398859105627, -0.0016466153322956469], [4.298889365567633, -0.0016024619894250021], [4.2556793347367945, -0.0015545293861022225]], [[4.2556793347367945, -0.0015545293861022225], [4.22419382713133, -0.0015208246976078374], [4.208864563836217, -0.0015047970775866498], [4.163482434658898, -0.0014573800384003724], [4.163504324358528, -0.0014574974485240097], [4.138174876805206, -0.0014312950626992683], [4.097986471812565, -0.0013903945407386792], [4.076808537189057, -0.0013690735508266707]], [[4.076808537189057, -0.0013690735508266707], [3.981733403253044, -0.001274020768798676], [3.938184310918683, -0.0012337660932633392], [3.8127843946362407, -0.0011166691160847118], [3.8134528633918436, -0.001120043223990264], [3.746596031800414, -0.001057344017024349], [3.6467408563989223, -0.000971140040043306], [3.595523444445574, -0.0009716851010130015]], [[3.595523444445574, -0.0009716851010130015], [3.539897541150129, -0.0009215366349613731], [3.513888105053813, -0.0008992122520615838], [3.4387631055616943, -0.0008340643247287665], [3.438957233954697, -0.0008349427289206192], [3.3986052967112075, -0.0007999161056196408], [3.3373913932314028, -0.0007486842343547645], [3.3063606648155974, -0.0007228572042194373]], [[3.3063606648155974, -0.0007228572042194373], [3.259566506043085, -0.0006837847072236642], [3.2379323354009277, -0.0006663842827860347], [3.176406569713378, -0.0006155461249925245], [3.176574913663839, -0.0006162404428999683], [3.144237643649723, -0.0005888415230996192], [3.0976724101919704, -0.0005229098755120844], [3.07460812319358, -0.0005060701500449122]], [[3.07460812319358, -0.0005060701500449122], [3.0567238548337734, -0.0004920983763978693], [3.048249276973094, -0.000485489205505144], [3.0239922382173106, -0.0004659134167257008], [3.0240097415646296, -0.0004659786498555482], [3.011072858661633, -0.00045515598044886885], [2.991535496327331, -0.00043828666760789786], [2.981758332960257, -0.00042947880907972125]], [[2.981758332960257, -0.00042947880907972125], [2.9598906830287697, -0.00040837832042802465], [2.950384988187155, -0.00039869689349933944], [2.9261827767014092, -0.0003698464163604569], [2.926241756349553, -0.00037013005388421294], [2.9156845335010693, -0.0003541032251659649], [2.903172819423448, -0.0003518852847982541], [2.899065829737911, -0.00033797430854726554]], [[2.899065829737911, -0.00033797430854726554], [2.8974995604816898, -0.0003293980987853297], [2.8970645034716127, -0.0003252228682151083], [2.897137558456482, -0.00031258546862341556], [2.8971378420516594, -0.00031260817029137825], [2.898146351209863, -0.00030539478213668925], [2.901346059841657, -0.0002937168033251803], [2.903896665233836, -0.00028740840811574406]], [[2.903896665233836, -0.00028740840811574406], [2.912949376827389, -0.0002713684023426011], [2.9188785849739016, -0.0002635363816366152], [2.9432319638759097, -0.00023869545474719458], [2.943196448977906, -0.00023885115004657607], [2.9618120460476645, -0.00022382839273308338], [3.00008691881002, -0.00019814035826263773], [3.0264801082507304, -0.00012071025993688755]], [[3.0264801082507304, -0.00012071025993688755], [3.04516278975697, -0.00010931030670676279], [3.054994110466925, -0.00010351237649240544], [3.0870265327871884, -8.503819528399737e-5], [3.087017033624382, -8.5061827139303e-5], [3.1070219573151623, -7.383235111679582e-5], [3.142327166806384, -5.447767869384021e-5], [3.1628676362144206, -4.3397629554834836e-5]]], true, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}([24.278869576587837, 0.0010918481202571294], [24.02243770512728, 0.0010988241358716312], [3.0264801082507304, -0.00012071025993688755], [3.04516278975697, -0.00010931030670676279], [3.054994110466925, -0.00010351237649240544], [3.0870265327871884, -8.503819528399737e-5], [3.087017033624382, -8.5061827139303e-5], [3.1070219573151623, -7.383235111679582e-5], [3.142327166806384, -5.447767869384021e-5], [3.1628676362144206, -4.3397629554834836e-5], [-4.3098467319680527e-7, -3.5287860347201586e-10], [24.246163940135784, 0.0010923576687794994], [-1.7750699683015906e-5, -0.00016813157302742143], OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}(0.16666666666666666, 0.0625, 0.1875, 0.25, -0.75, -0.75, 3.75, -3.0, 0.5, 0.26895043731778423, -0.7084548104956269, 0.8658892128279884, 0.15462307371928363, 0.06184922948771345, -0.02947695035460993, 0.18500664893617022, 0.4802345261121857, -0.5337849069148937, -0.013090093085106383, 0.7861107753062541, 0.08783068783068783, 0.3006060606060606, 0.22777777777777777, 0.027777777777777776, 0.06218596218596219, 0.2938217338217338, 0.16666666666666666, 0.25, 0.5, 0.5, 0.6428571428571429, 0.875, -0.19894179894179895, 0.9115151515151515, -1.9777777777777779, -0.1111111111111111, 1.67013727013727, -0.2938217338217338, 1.892063492063492, -6.067155067155067, 7.282458282458283, -4.0195360195360195, -7.214545454545455, 20.676923076923078, -20.31142191142191, 7.14965034965035, 7.866666666666666, -18.78205128205128, 13.508547008547009, -2.3653846153846154, 2.0, -5.294871794871795, 4.534188034188034, -1.2115384615384615, -1.4924630924630924, 1.5785667324128863, 1.1958838881915805, -1.219801565955412, -7.051721611721612, 16.273203719357564, -11.978886071193763, 3.0512256973795435, 4.0, -8.384615384615385, 5.769230769230769, -1.3846153846153846))), true, 0, DiffEqBase.DEStats
Number of function 1 evaluations: 1221
Number of function 2 evaluations: 0
Number of W matrix evaluations: 0
Number of linear solves: 0
Number of Jacobians created: 0
Number of nonlinear solver iterations: 0
Number of nonlinear solver convergence failures: 0
Number of rootfind condition calls: 0
Number of accepted steps: 76
Number of rejected steps: 98, :Success), SciMLBase.ODESolution{Float64, 2, Vector{Vector{Float64}}, Nothing, Nothing, Vector{Float64}, Vector{Vector{Vector{Float64}}}, SciMLBase.ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Any}, SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}, SciMLBase.StandardODEProblem}, OwrenZen5, OrdinaryDiffEq.InterpolationData{SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}}, DiffEqBase.DEStats}([[0.0, 0.0], [0.038891456789778414, 0.002399844134945049], [0.4277687222812392, 0.0263931435141346], [1.6163752927794541, 0.09970608980125882], [1.8405008729610424, 0.11352726914093314], [2.6976333586741923, 0.1613933771836907], [3.1055820276931247, 0.18457908683987945], [3.282294292825849, 0.19458146318986574], [3.647047760437315, 0.21505926386640148], [3.742568379882823, 0.2218514256928209] … [22.69654968855428, 0.0015731033288026673], [23.184672938349358, 0.0014578451580469396], [23.476717310879103, 0.0013964156336131839], [24.204570283967502, 0.0012694972273959515], [24.55648486475322, 0.0012208355537146004], [25.036569897633175, 0.0011666351095386896], [25.287525666578222, 0.0011440023536601767], [26.075916248363058, 0.0010978496703294516], [26.451671253925994, 0.0010939174466289441], [26.477539288482962, 0.0010941217355143757]], nothing, nothing, [0.0, 9.999999999999999e-5, 0.0010999999999999998, 0.004157538297715653, 0.004734232969858132, 0.006958793296757852, 0.008029082296512037, 0.008494068830950764, 0.00945643391124702, 0.009708771878579214 … 0.9107042797108975, 1.0370430698268593, 1.117664819807957, 1.3336329416171555, 1.4444315682562385, 1.5997146438790641, 1.6815733266045525, 1.9322515366347681, 2.0427167322048905, 2.05], [[[0.0, 0.0]], [[388.91797558405193, 23.99891299695447], [388.9168393120881, 23.998755685670552], [388.91627127041147, 23.998677053968642], [388.91456752138345, 23.998441254065217], [388.9145675213835, 23.998441254065217], [388.9135942040034, 23.998306575502347], [388.91201295646533, 23.998087822479818], [388.9111617171172, 23.997970083487374]], [[388.9111617171172, 23.997970083487374], [388.89982533275986, 23.99640364177763], [388.8941665687922, 23.995622814039834], [388.87722786743024, 23.99328984710095], [388.8772278674261, 23.993289847101227], [388.86757394883426, 23.991963142983806], [388.8519256295639, 23.989817204324922], [388.8435189325277, 23.988666706088228]], [[388.8435189325277, 23.988666706088228], [388.8093923338344, 23.98401330043009], [388.79241715895364, 23.98170894829312], [388.74409614812106, 23.978127032528267], [388.74409618643773, 23.97812715062931], [388.7189116182283, 23.97532560524979], [388.67762573152527, 23.970685392531603], [388.65521080405307, 23.968141948851944]], [[388.65521080405307, 23.968141948851944], [388.64955316966325, 23.9674973069043], [388.6467213135855, 23.96717424189635], [388.63821361348766, 23.966202081228662], [388.6382136134857, 23.966202081228463], [388.63334389547305, 23.965644561449118], [388.62541792398554, 23.964735490813073], [388.54308969729846, 22.266740426379563]], [[388.54308969729846, 22.266740426379563], [387.4522404368275, 22.010989158926954], [386.9115196162807, 21.88571336765257], [385.2945702255106, 21.51218214092568], [385.2946814607366, 21.512328095070913], [384.37711324811596, 21.302067189934313], [382.8962350237434, 20.96569546106497], [382.1038896140327, 20.787093129341017]], [[382.1038896140327, 20.787093129341017], [381.6547052639334, 21.88399036702744], [381.52607624673624, 21.85332317901344], [381.1400654002456, 21.76589363047796], [381.14080956552664, 21.756987150627598], [380.91988844723573, 21.71532907197909], [380.56286364346107, 21.63051064423099], [380.3706780041492, 21.587457262233883]], [[380.3706780041492, 21.587457262233883], [380.2594706011516, 21.56194907820933], [380.2039135546178, 21.549221032479217], [380.0372887865782, 21.511059778995776], [380.0372889043116, 21.51105992966003], [379.94213730644566, 21.48928698028863], [379.7876132593504, 21.453958246704996], [379.70445773090444, 21.434961704200653]], [[379.70445773090444, 21.434961704200653], [379.47510003991596, 21.382598132614753], [379.3606199055645, 21.356526776208586], [379.01737637142406, 21.278409073113007], [379.01737740745455, 21.27841039375184], [378.82150275862875, 21.233912378715168], [378.50362017217964, 21.16182479325166], [378.3326634631706, 21.123120335607744]], [[378.3326634631706, 21.123120335607744], [378.2729259094025, 21.109604853071755], [378.25629513882586, 27.381105337773295], [378.5128830925256, 27.480179217600913], [378.5132323369516, 27.35947683628691], [378.65975267086986, 27.520043462725145], [378.8986048033132, 27.56780188756352], [379.02741766047586, 27.607047782635036]] … [[4.4366863253050965, -0.0013481697705795426], [4.360608269255559, -0.001283803202488026], [4.324920798065387, -0.0012551821819376675], [4.220964782075943, -0.0011712686133621792], [4.221268561855687, -0.0011725225617031747], [4.164857521355146, -0.0011271981522801206], [4.078423088884256, -0.001060995783583905], [4.034096119514446, -0.0010275668453807725]], [[4.034096119514446, -0.0010275668453807725], [3.9727022659535605, -0.000981616551897457], [3.943830407734222, -0.0009609991119306795], [3.8598552330864737, -0.0009005247570304075], [3.8600629996675346, -0.0009012843586794082], [3.8145440584893264, -0.000868574222198193], [3.7441902506681646, -0.0008474254390147475], [3.707957627816626, -0.0008210485933383481]], [[3.707957627816626, -0.0008210485933383481], [3.6780017888935173, -0.0008000159033608931], [3.6635601339772603, -0.0007901169825968275], [3.6211328444221684, -0.0007608713402511152], [3.6211650594384404, -0.0007609818126927117], [3.5977482693514546, -0.0007448925977051892], [3.5610367987239937, -0.0007199952426846824], [3.5419042360570465, -0.0007070820631746183]], [[3.5419042360570465, -0.0007070820631746183], [3.476381189384523, -0.0006625976235976836], [3.446675861173618, -0.0006434738041710661], [3.3627897290630746, -0.0005875662305407654], [3.3632136895842977, -0.0005889700334418848], [3.31970763897419, -0.0005588410428026333], [3.2576791998435524, -0.0005009480982539176], [3.227875005632868, -0.0004797747612668692]], [[3.227875005632868, -0.0004797747612668692], [3.2088406739454336, -0.000465425737532617], [3.199888102690247, -0.0004586543881938775], [3.17445954689412, -0.00043855684123451585], [3.1744822934361805, -0.00043863612348523306], [3.161076757686204, -0.00042750653223193585], [3.141106983992221, -0.00041016109344772507], [3.1312613262295574, -0.0004010895095922709]], [[3.1312613262295574, -0.0004010895095922709], [3.1144785254538956, -0.00038440469720043126], [3.107090522470946, -0.00037659850249866303], [3.088033263055677, -0.0003532149607308019], [3.088065832059333, -0.0003533691107028364], [3.0795033687915017, -0.0003402826769101559], [3.069815670070788, -0.0003035035427184521], [3.0667008442161636, -0.0002950341357072576]], [[3.0667008442161636, -0.0002950341357072576], [3.065319949295089, -0.00028880022434599173], [3.064892013612602, -0.0002857477709649089], [3.0646420712090245, -0.00027648795942368054], [3.064642363037502, -0.00027650096918072845], [3.06522065736625, -0.00027119777916680826], [3.0673157804608624, -0.0002625811720141137], [3.069052368426467, -0.00025791826472252113]], [[3.069052368426467, -0.00025791826472252113], [3.0808855182771437, -0.00023824654302074535], [3.089615483389294, -0.00022869380519922747], [3.1292662214659486, -0.0001971035058170611], [3.12914423882966, -0.00019755714012199257], [3.1618122935545414, -0.00017735848966612857], [3.234607295534689, -0.00010652268912363105], [3.285054062392053, -8.529504585749932e-5]], [[3.285054062392053, -8.529504585749932e-5], [3.3188378477285347, -7.057916131988147e-5], [3.3367197255417103, -6.300149983981507e-5], [3.3959360277915738, -3.787789984556326e-5], [3.3958954772050034, -3.7960709550201874e-5], [3.433496265289108, -2.203682093401241e-5], [3.500891454406666, 6.418168004525011e-6], [3.54072969280489, 2.3359407459496188e-5]], [[3.54072969280489, 2.3359407459496188e-5], [3.544357907981139, 2.49084672775421e-5], [3.546179361180174, 2.5685443642684555e-5], [3.551675753033515, 2.8033911039494503e-5], [3.551675748454202, 2.803388325601304e-5], [3.554837900526055, 2.9386154392484426e-5], [3.5600088311013507, 3.159932868219777e-5], [3.5628103045129422, 3.279934878578305e-5]]], SciMLBase.ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Any}, SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}, SciMLBase.StandardODEProblem}(SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}(GasChromatographySimulator.odesystem_r!, LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, SciMLBase.DEFAULT_OBSERVED, nothing), [0.0, 0.0], (0.0, 2.05), Any[GasChromatographySimulator.Column(2.05, 0.000104, [0.000104], 1.04e-7, [1.04e-7], "FS5ms", "He"), GasChromatographySimulator.Program{GasChromatographySimulator.var"#gf#2"{String, Matrix{Float64}}}([0.0, 0.9200000000000003, 0.9100000000000007, 0.9199999999999986, 0.9199999999999995, 0.910000000000001, 0.9199999999999999, 0.9199999999999982, 0.9200000000000008, 0.9300000000000006 … 0.9199999999999875, 0.9100000000000108, 0.9200000000000017, 0.9099999999999966, 0.9200000000000017, 0.9099999999999966, 0.9200000000000017, 0.9099999999999966, 0.9099999999999966, 0.9200000000000017], [49.323, 48.954, 49.323, 49.077, 49.569, 49.446, 48.831, 49.323, 49.077, 49.077 … 63.099, 56.211, 51.414, 48.339, 46.74, 45.51, 44.895, 44.28, 43.911, 43.542], [354589.48, 354562.67000000004, 354589.48, 354571.61, 354607.32, 354598.4, 354553.72, 354589.48, 354571.61, 354571.61 … 355560.34, 355082.14, 354740.58, 354517.9, 354400.94, 354310.42000000004, 354264.98, 354219.43, 354192.04000000004, 354164.6], [230168.87, 230224.3, 230168.87, 230205.81999999998, 230131.96, 230150.41, 230242.79, 230168.87, 230205.81999999998, 230205.81999999998 … 228154.50999999998, 229148.40000000002, 229856.25, 230316.84999999998, 230558.51, 230745.38999999998, 230839.16, 230933.15000000002, 230989.65000000002, 231046.23], GasChromatographySimulator.var"#gf#2"{String, Matrix{Float64}}("outlet", [-2.829 0.0 2.05 -3.0; -2.46 0.0 2.05 -3.0; … ; -1.23 0.0 2.05 -3.0; -0.984 0.0 2.05 -3.0]), [-2.829 0.0 2.05 -3.0; -2.46 0.0 2.05 -3.0; … ; -1.23 0.0 2.05 -3.0; -0.984 0.0 2.05 -3.0], 2051×108 extrapolate(interpolate((0.0:0.001:2.05,::Vector{Float64}), ::Matrix{Float64}, Gridded(Linear())), Flat()) with element type Float64:
319.644 319.644 319.644 319.89 … 316.077 315.954 315.831 315.708
319.644 319.644 319.644 319.89 316.077 315.954 315.831 315.708
319.645 319.644 319.645 319.89 316.077 315.954 315.831 315.708
319.645 319.645 319.645 319.891 316.078 315.954 315.831 315.708
319.645 319.645 319.645 319.891 316.078 315.955 315.831 315.708
319.645 319.645 319.645 319.891 … 316.078 315.955 315.832 315.708
319.646 319.645 319.646 319.891 316.078 315.955 315.832 315.709
319.646 319.646 319.646 319.892 316.078 315.955 315.832 315.709
319.646 319.646 319.646 319.892 316.079 315.955 315.832 315.709
319.646 319.646 319.646 319.892 316.079 315.955 315.832 315.709
⋮ ⋱ ⋮
322.44 322.075 322.44 322.199 318.022 317.413 317.046 316.68
322.444 322.079 322.444 322.203 318.025 317.415 317.048 316.682
322.448 322.082 322.448 322.206 318.028 317.417 317.05 316.683
322.452 322.086 322.452 322.21 … 318.03 317.419 317.052 316.685
322.456 322.089 322.456 322.213 318.033 317.421 317.054 316.686
322.46 322.093 322.46 322.217 318.036 317.423 317.056 316.688
322.465 322.097 322.465 322.22 318.039 317.426 317.057 316.689
322.469 322.1 322.469 322.224 318.042 317.428 317.059 316.691
322.473 322.104 322.473 322.227 … 318.045 317.43 317.061 316.692, 108-element extrapolate(interpolate((::Vector{Float64},), ::Vector{Float64}, Gridded(Linear())), Flat()) with element type Float64:
354589.48
354562.67000000004
354589.48
354571.61
354607.32
354598.4
354553.72
354589.48
354571.61
354571.61
⋮
355082.14
354740.58
354517.9
354400.94
354310.42000000004
354264.98
354219.43
354192.04000000004
354164.6, 108-element extrapolate(interpolate((::Vector{Float64},), ::Vector{Float64}, Gridded(Linear())), Flat()) with element type Float64:
230168.87
230224.3
230168.87
230205.81999999998
230131.96
230150.41
230242.79
230168.87
230205.81999999998
230205.81999999998
⋮
229148.40000000002
229856.25
230316.84999999998
230558.51
230745.38999999998
230839.16
230933.15000000002
230989.65000000002
231046.23), GasChromatographySimulator.Substance("C13", "629-50-5", 444.46999999999997, 35.93, 125.62, 0.001, "Leppert2020b, alkane, alkanes", 0.00010393999972322901, 0.0, 0.0), GasChromatographySimulator.Options(OwrenZen5(), 1.0e-6, 0.001, "inlet", true, false, "Blumberg", "Pressure")], Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}(), SciMLBase.StandardODEProblem()), OwrenZen5(), OrdinaryDiffEq.InterpolationData{SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}}(SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}(GasChromatographySimulator.odesystem_r!, LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, SciMLBase.DEFAULT_OBSERVED, nothing), [[0.0, 0.0], [0.038891456789778414, 0.002399844134945049], [0.4277687222812392, 0.0263931435141346], [1.6163752927794541, 0.09970608980125882], [1.8405008729610424, 0.11352726914093314], [2.6976333586741923, 0.1613933771836907], [3.1055820276931247, 0.18457908683987945], [3.282294292825849, 0.19458146318986574], [3.647047760437315, 0.21505926386640148], [3.742568379882823, 0.2218514256928209] … [22.69654968855428, 0.0015731033288026673], [23.184672938349358, 0.0014578451580469396], [23.476717310879103, 0.0013964156336131839], [24.204570283967502, 0.0012694972273959515], [24.55648486475322, 0.0012208355537146004], [25.036569897633175, 0.0011666351095386896], [25.287525666578222, 0.0011440023536601767], [26.075916248363058, 0.0010978496703294516], [26.451671253925994, 0.0010939174466289441], [26.477539288482962, 0.0010941217355143757]], [0.0, 9.999999999999999e-5, 0.0010999999999999998, 0.004157538297715653, 0.004734232969858132, 0.006958793296757852, 0.008029082296512037, 0.008494068830950764, 0.00945643391124702, 0.009708771878579214 … 0.9107042797108975, 1.0370430698268593, 1.117664819807957, 1.3336329416171555, 1.4444315682562385, 1.5997146438790641, 1.6815733266045525, 1.9322515366347681, 2.0427167322048905, 2.05], [[[0.0, 0.0]], [[388.91797558405193, 23.99891299695447], [388.9168393120881, 23.998755685670552], [388.91627127041147, 23.998677053968642], [388.91456752138345, 23.998441254065217], [388.9145675213835, 23.998441254065217], [388.9135942040034, 23.998306575502347], [388.91201295646533, 23.998087822479818], [388.9111617171172, 23.997970083487374]], [[388.9111617171172, 23.997970083487374], [388.89982533275986, 23.99640364177763], [388.8941665687922, 23.995622814039834], [388.87722786743024, 23.99328984710095], [388.8772278674261, 23.993289847101227], [388.86757394883426, 23.991963142983806], [388.8519256295639, 23.989817204324922], [388.8435189325277, 23.988666706088228]], [[388.8435189325277, 23.988666706088228], [388.8093923338344, 23.98401330043009], [388.79241715895364, 23.98170894829312], [388.74409614812106, 23.978127032528267], [388.74409618643773, 23.97812715062931], [388.7189116182283, 23.97532560524979], [388.67762573152527, 23.970685392531603], [388.65521080405307, 23.968141948851944]], [[388.65521080405307, 23.968141948851944], [388.64955316966325, 23.9674973069043], [388.6467213135855, 23.96717424189635], [388.63821361348766, 23.966202081228662], [388.6382136134857, 23.966202081228463], [388.63334389547305, 23.965644561449118], [388.62541792398554, 23.964735490813073], [388.54308969729846, 22.266740426379563]], [[388.54308969729846, 22.266740426379563], [387.4522404368275, 22.010989158926954], [386.9115196162807, 21.88571336765257], [385.2945702255106, 21.51218214092568], [385.2946814607366, 21.512328095070913], [384.37711324811596, 21.302067189934313], [382.8962350237434, 20.96569546106497], [382.1038896140327, 20.787093129341017]], [[382.1038896140327, 20.787093129341017], [381.6547052639334, 21.88399036702744], [381.52607624673624, 21.85332317901344], [381.1400654002456, 21.76589363047796], [381.14080956552664, 21.756987150627598], [380.91988844723573, 21.71532907197909], [380.56286364346107, 21.63051064423099], [380.3706780041492, 21.587457262233883]], [[380.3706780041492, 21.587457262233883], [380.2594706011516, 21.56194907820933], [380.2039135546178, 21.549221032479217], [380.0372887865782, 21.511059778995776], [380.0372889043116, 21.51105992966003], [379.94213730644566, 21.48928698028863], [379.7876132593504, 21.453958246704996], [379.70445773090444, 21.434961704200653]], [[379.70445773090444, 21.434961704200653], [379.47510003991596, 21.382598132614753], [379.3606199055645, 21.356526776208586], [379.01737637142406, 21.278409073113007], [379.01737740745455, 21.27841039375184], [378.82150275862875, 21.233912378715168], [378.50362017217964, 21.16182479325166], [378.3326634631706, 21.123120335607744]], [[378.3326634631706, 21.123120335607744], [378.2729259094025, 21.109604853071755], [378.25629513882586, 27.381105337773295], [378.5128830925256, 27.480179217600913], [378.5132323369516, 27.35947683628691], [378.65975267086986, 27.520043462725145], [378.8986048033132, 27.56780188756352], [379.02741766047586, 27.607047782635036]] … [[4.4366863253050965, -0.0013481697705795426], [4.360608269255559, -0.001283803202488026], [4.324920798065387, -0.0012551821819376675], [4.220964782075943, -0.0011712686133621792], [4.221268561855687, -0.0011725225617031747], [4.164857521355146, -0.0011271981522801206], [4.078423088884256, -0.001060995783583905], [4.034096119514446, -0.0010275668453807725]], [[4.034096119514446, -0.0010275668453807725], [3.9727022659535605, -0.000981616551897457], [3.943830407734222, -0.0009609991119306795], [3.8598552330864737, -0.0009005247570304075], [3.8600629996675346, -0.0009012843586794082], [3.8145440584893264, -0.000868574222198193], [3.7441902506681646, -0.0008474254390147475], [3.707957627816626, -0.0008210485933383481]], [[3.707957627816626, -0.0008210485933383481], [3.6780017888935173, -0.0008000159033608931], [3.6635601339772603, -0.0007901169825968275], [3.6211328444221684, -0.0007608713402511152], [3.6211650594384404, -0.0007609818126927117], [3.5977482693514546, -0.0007448925977051892], [3.5610367987239937, -0.0007199952426846824], [3.5419042360570465, -0.0007070820631746183]], [[3.5419042360570465, -0.0007070820631746183], [3.476381189384523, -0.0006625976235976836], [3.446675861173618, -0.0006434738041710661], [3.3627897290630746, -0.0005875662305407654], [3.3632136895842977, -0.0005889700334418848], [3.31970763897419, -0.0005588410428026333], [3.2576791998435524, -0.0005009480982539176], [3.227875005632868, -0.0004797747612668692]], [[3.227875005632868, -0.0004797747612668692], [3.2088406739454336, -0.000465425737532617], [3.199888102690247, -0.0004586543881938775], [3.17445954689412, -0.00043855684123451585], [3.1744822934361805, -0.00043863612348523306], [3.161076757686204, -0.00042750653223193585], [3.141106983992221, -0.00041016109344772507], [3.1312613262295574, -0.0004010895095922709]], [[3.1312613262295574, -0.0004010895095922709], [3.1144785254538956, -0.00038440469720043126], [3.107090522470946, -0.00037659850249866303], [3.088033263055677, -0.0003532149607308019], [3.088065832059333, -0.0003533691107028364], [3.0795033687915017, -0.0003402826769101559], [3.069815670070788, -0.0003035035427184521], [3.0667008442161636, -0.0002950341357072576]], [[3.0667008442161636, -0.0002950341357072576], [3.065319949295089, -0.00028880022434599173], [3.064892013612602, -0.0002857477709649089], [3.0646420712090245, -0.00027648795942368054], [3.064642363037502, -0.00027650096918072845], [3.06522065736625, -0.00027119777916680826], [3.0673157804608624, -0.0002625811720141137], [3.069052368426467, -0.00025791826472252113]], [[3.069052368426467, -0.00025791826472252113], [3.0808855182771437, -0.00023824654302074535], [3.089615483389294, -0.00022869380519922747], [3.1292662214659486, -0.0001971035058170611], [3.12914423882966, -0.00019755714012199257], [3.1618122935545414, -0.00017735848966612857], [3.234607295534689, -0.00010652268912363105], [3.285054062392053, -8.529504585749932e-5]], [[3.285054062392053, -8.529504585749932e-5], [3.3188378477285347, -7.057916131988147e-5], [3.3367197255417103, -6.300149983981507e-5], [3.3959360277915738, -3.787789984556326e-5], [3.3958954772050034, -3.7960709550201874e-5], [3.433496265289108, -2.203682093401241e-5], [3.500891454406666, 6.418168004525011e-6], [3.54072969280489, 2.3359407459496188e-5]], [[3.54072969280489, 2.3359407459496188e-5], [3.544357907981139, 2.49084672775421e-5], [3.546179361180174, 2.5685443642684555e-5], [3.551675753033515, 2.8033911039494503e-5], [3.551675748454202, 2.803388325601304e-5], [3.554837900526055, 2.9386154392484426e-5], [3.5600088311013507, 3.159932868219777e-5], [3.5628103045129422, 3.279934878578305e-5]]], true, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}([26.477539288482962, 0.0010941217355143757], [26.451671253925994, 0.0010939174466289441], [3.54072969280489, 2.3359407459496188e-5], [3.544357907981139, 2.49084672775421e-5], [3.546179361180174, 2.5685443642684555e-5], [3.551675753033515, 2.8033911039494503e-5], [3.551675748454202, 2.803388325601304e-5], [3.554837900526055, 2.9386154392484426e-5], [3.5600088311013507, 3.159932868219777e-5], [3.5628103045129422, 3.279934878578305e-5], [2.664977069432419e-9, 9.355498254486206e-13], [26.474296953527407, 0.001094092423005921], [1.0064667995456873e-7, 4.4675044892689723e-7], OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}(0.16666666666666666, 0.0625, 0.1875, 0.25, -0.75, -0.75, 3.75, -3.0, 0.5, 0.26895043731778423, -0.7084548104956269, 0.8658892128279884, 0.15462307371928363, 0.06184922948771345, -0.02947695035460993, 0.18500664893617022, 0.4802345261121857, -0.5337849069148937, -0.013090093085106383, 0.7861107753062541, 0.08783068783068783, 0.3006060606060606, 0.22777777777777777, 0.027777777777777776, 0.06218596218596219, 0.2938217338217338, 0.16666666666666666, 0.25, 0.5, 0.5, 0.6428571428571429, 0.875, -0.19894179894179895, 0.9115151515151515, -1.9777777777777779, -0.1111111111111111, 1.67013727013727, -0.2938217338217338, 1.892063492063492, -6.067155067155067, 7.282458282458283, -4.0195360195360195, -7.214545454545455, 20.676923076923078, -20.31142191142191, 7.14965034965035, 7.866666666666666, -18.78205128205128, 13.508547008547009, -2.3653846153846154, 2.0, -5.294871794871795, 4.534188034188034, -1.2115384615384615, -1.4924630924630924, 1.5785667324128863, 1.1958838881915805, -1.219801565955412, -7.051721611721612, 16.273203719357564, -11.978886071193763, 3.0512256973795435, 4.0, -8.384615384615385, 5.769230769230769, -1.3846153846153846))), true, 0, DiffEqBase.DEStats
Number of function 1 evaluations: 1522
Number of function 2 evaluations: 0
Number of W matrix evaluations: 0
Number of linear solves: 0
Number of Jacobians created: 0
Number of nonlinear solver iterations: 0
Number of nonlinear solver convergence failures: 0
Number of rootfind condition calls: 0
Number of accepted steps: 89
Number of rejected steps: 128, :Success), SciMLBase.ODESolution{Float64, 2, Vector{Vector{Float64}}, Nothing, Nothing, Vector{Float64}, Vector{Vector{Vector{Float64}}}, SciMLBase.ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Any}, SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}, SciMLBase.StandardODEProblem}, OwrenZen5, OrdinaryDiffEq.InterpolationData{SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}}, DiffEqBase.DEStats}([[0.0, 0.0], [0.09434297519119461, 0.014588989674416568], [1.0376718697875846, 0.16043981547407277], [1.7198895356224613, 0.2659188456150861], [1.841714908137734, 0.28475413218691814], [2.7074486448696806, 0.405047515340941], [3.090970835225302, 0.45940277933306084], [3.2565226698332648, 0.4827801647583014], [3.601977834432838, 0.5311641571400668], [3.6699574273212576, 0.5406223396534391] … [24.188994509416514, 0.001647875027462439], [24.654159194142853, 0.001530556961155621], [25.015032955050962, 0.0014540688959208494], [25.20460724778876, 0.0014200984644074217], [26.081644849484665, 0.0012900787340708337], [26.44600877997753, 0.0012492273825221807], [26.93811804945018, 0.001201383266977195], [27.174550808272325, 0.0011807779553976233], [28.371426573269147, 0.0011289585417235874], [28.52188731865048, 0.0011305414127862122]], nothing, nothing, [0.0, 9.999999999999999e-5, 0.0010999999999999998, 0.0018233003758987769, 0.0019524692648474609, 0.0028788714542471016, 0.003293933793629155, 0.003473616768223839, 0.0038495518166723314, 0.003923687659220228 … 0.831689485573404, 0.9426517603207641, 1.034935428040448, 1.0854388624641815, 1.3348340416593905, 1.4442796655808454, 1.594644777750869, 1.6669786003054576, 2.011525484732248, 2.05], [[[0.0, 0.0]], [[943.4390288453932, 145.89351749926558], [943.4359340763258, 145.89230901443466], [943.4343873073923, 145.89170516502142], [943.4297494549521, 145.88989517884193], [943.4297494549522, 145.889895178842], [943.4271009082737, 145.8888619552282], [943.4227995865657, 145.88718460202097], [943.4204848064758, 145.88628225036084]], [[943.4204848064758, 145.88628225036084], [943.3897090215066, 145.87430687111086], [943.3743826733013, 145.86835846481054], [943.3286490024876, 145.85066938270714], [943.3286490025014, 145.8506693827457], [943.3026808808049, 145.84066668273093], [943.2607392067847, 145.82457565785475], [943.2455429630039, 145.83929655349726]], [[943.2455429630039, 145.83929655349726], [943.2308232586411, 145.83633059918813], [943.2234346077735, 145.83483007274498], [943.2011537115685, 145.8302585183613], [943.2011537115719, 145.83025851836763], [943.1883443086272, 145.82759902866633], [943.1674088821522, 145.8232041909606], [943.1560743497375, 145.82080022031718]], [[943.1560743497375, 145.82080022031718], [943.1533691261527, 145.82022394001663], [943.152015596202, 145.81993524032302], [943.1479513413791, 145.8190669101584], [943.1479513413793, 145.81906691015848], [943.1456264401359, 145.8185692173594], [943.1418446444657, 145.81775813346675], [942.9131282323375, 134.72661679483556]], [[942.9131282323375, 134.72661679483556], [940.0818077250636, 133.0602739192752], [938.6792029685978, 132.24529340706704], [934.4853263655353, 129.81592666091808], [934.4856655106724, 129.81704180919922], [932.1066660982016, 128.45080378230315], [928.2686830490678, 126.26753605391592], [926.2158812596526, 125.10933469627894]], [[926.2158812596526, 125.10933469627894], [925.1977426390224, 132.34048641478606], [924.891846916057, 132.15582118047104], [923.9739991754475, 131.63202779458052], [923.9755850641913, 131.57307411697312], [923.450483082576, 131.32861521722765], [922.6015720866076, 130.8178707658881], [922.1446820104883, 130.56010604939686]], [[922.1446820104883, 130.56010604939686], [921.8812401762689, 130.40755152473753], [921.749631965773, 130.33143070566499], [921.3549248910518, 130.1032075338119], [921.3549251716731, 130.10320843727658], [921.1295318695991, 129.97299711465058], [920.7635066274252, 129.76171915603754], [920.5665382015567, 129.64811464057257]], [[920.5665382015567, 129.64811464057257], [920.0173620546517, 129.33156110555024], [919.743264443004, 129.17396204747092], [918.9214815239473, 128.70176404701556], [918.921484074519, 128.7017722270229], [918.452559661427, 128.43281244609295], [917.691595947123, 127.9971189443586], [917.2823750734162, 127.76320425971502]], [[917.2823750734162, 127.76320425971502], [917.1748304081565, 127.70177033129508], [917.1210769551227, 127.67107923945261], [916.9598363223287, 127.57902910628668], [916.9598363416155, 127.5790291675552], [916.8677246202442, 127.5264626397337], [916.7180831088551, 127.44109422150838], [916.6375274133983, 127.39515329235721]] … [[4.974670584092588, -0.0016974298435641264], [4.856704476424118, -0.0015898854544480817], [4.802622512023197, -0.0015441386523255044], [4.646109338883215, -0.001410069669694866], [4.647021752007199, -0.0014140701177656804], [4.563102428101856, -0.0013416534344114913], [4.437009412900014, -0.0012471167690421014], [4.373211724555932, -0.001195810348732913]], [[4.373211724555932, -0.001195810348732913], [4.308156755054486, -0.001144359590438196], [4.277498702564764, -0.0011211948383378948], [4.188132265288372, -0.0010531560710340627], [4.188347350588086, -0.0010539735938404477], [4.139765343775659, -0.0010171016085517553], [4.065089449043437, -0.0009624883837391796], [4.026734691927916, -0.000934752883253532]], [[4.026734691927916, -0.000934752883253532], [3.9854531364117007, -0.0009050267940513119], [3.965726060994671, -0.0008912449475499942], [3.907986319908351, -0.0008506068746021937], [3.9080585454506696, -0.0008508554667840569], [3.8764065640043035, -0.0008286277207101859], [3.8285923787408915, -0.0007144113234187162], [3.8042493775223503, -0.0007019242939583612]], [[3.8042493775223503, -0.0007019242939583612], [3.786854017082735, -0.0006917897238507972], [3.7783531686145513, -0.0006868945194004011], [3.753202927439606, -0.0006723320505910193], [3.7532098786089834, -0.0006723509877281336], [3.7391613805923796, -0.0006642168639465721], [3.716845559737066, -0.0006513379189695054], [3.7050814095820876, -0.0006445518366638028]], [[3.7050814095820876, -0.0006445518366638028], [3.63097593221394, -0.0006011753132083794], [3.5980200529623207, -0.0005828015125175579], [3.5063144595268803, -0.0005287524951372439], [3.5069603825018643, -0.0005305269942024746], [3.4605182041511307, -0.0005011054033975129], [3.3979105869472264, -0.00041929655922884963], [3.3694214934091806, -0.00040292272662444063]], [[3.3694214934091806, -0.00040292272662444063], [3.3542417841641483, -0.0003925802727507387], [3.3471796502181643, -0.0003876557078243811], [3.327470238881458, -0.0003729279569360881], [3.327487339996513, -0.0003729796082674483], [3.317355276180605, -0.0003647387843072492], [3.3027158361544404, -0.0003517423390591263], [3.295759947661572, -0.00034487356003287857]], [[3.295759947661572, -0.00034487356003287857], [3.2846645944151844, -0.00033235728753046117], [3.280063860077342, -0.0003264193572082684], [3.269511784335494, -0.00030838902510532543], [3.2695308834302006, -0.0003084958189282956], [3.265883085181301, -0.0002982242562443258], [3.262698882327278, -0.0003145216705242903], [3.2628979660621598, -0.0003038616785610102]], [[3.2628979660621598, -0.0003038616785610102], [3.263824903322812, -0.00029752037629855147], [3.2645255407362077, -0.0002944017215598364], [3.2676199235646504, -0.00028490632513666306], [3.267619166645671, -0.00028491833118709966], [3.2700668862823012, -0.00027945443408162703], [3.2751292335862887, -0.00027053458044544476], [3.278427156920703, -0.000265688551069525]], [[3.278427156920703, -0.000265688551069525], [3.309734979340666, -0.00023299433552799497], [3.3318113931609927, -0.00021703254093414614], [3.4324272335713135, -0.0001602006236329635], [3.4316890620873295, -0.00016205273978650776], [3.516196459088921, -0.00012296995322982375], [3.704439625955943, -4.486806367025656e-5], [3.8397845200987337, 1.1109661982819938e-5]], [[3.8397845200987337, 1.1109661982819938e-5], [3.862395703784729, 2.063641339340055e-5], [3.873897000912461, 2.5459947080581522e-5], [3.9095722516392177, 4.058699278945981e-5], [3.9095680498999505, 4.057694564145106e-5], [3.930685581650487, 4.959968505784248e-5], [3.9661662560995254, 6.485301961625342e-5], [3.985891139220783, 7.339625698823504e-5]]], SciMLBase.ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Any}, SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}, SciMLBase.StandardODEProblem}(SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}(GasChromatographySimulator.odesystem_r!, LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, SciMLBase.DEFAULT_OBSERVED, nothing), [0.0, 0.0], (0.0, 2.05), Any[GasChromatographySimulator.Column(2.05, 0.000104, [0.000104], 1.04e-7, [1.04e-7], "FS5ms", "He"), GasChromatographySimulator.Program{GasChromatographySimulator.var"#gf#2"{String, Matrix{Float64}}}([0.0, 0.9200000000000003, 0.9100000000000007, 0.9199999999999986, 0.9199999999999995, 0.910000000000001, 0.9199999999999999, 0.9199999999999982, 0.9200000000000008, 0.9300000000000006 … 0.9199999999999875, 0.9100000000000108, 0.9200000000000017, 0.9099999999999966, 0.9200000000000017, 0.9099999999999966, 0.9200000000000017, 0.9099999999999966, 0.9099999999999966, 0.9200000000000017], [49.323, 48.954, 49.323, 49.077, 49.569, 49.446, 48.831, 49.323, 49.077, 49.077 … 63.099, 56.211, 51.414, 48.339, 46.74, 45.51, 44.895, 44.28, 43.911, 43.542], [354589.48, 354562.67000000004, 354589.48, 354571.61, 354607.32, 354598.4, 354553.72, 354589.48, 354571.61, 354571.61 … 355560.34, 355082.14, 354740.58, 354517.9, 354400.94, 354310.42000000004, 354264.98, 354219.43, 354192.04000000004, 354164.6], [230168.87, 230224.3, 230168.87, 230205.81999999998, 230131.96, 230150.41, 230242.79, 230168.87, 230205.81999999998, 230205.81999999998 … 228154.50999999998, 229148.40000000002, 229856.25, 230316.84999999998, 230558.51, 230745.38999999998, 230839.16, 230933.15000000002, 230989.65000000002, 231046.23], GasChromatographySimulator.var"#gf#2"{String, Matrix{Float64}}("outlet", [-2.829 0.0 2.05 -3.0; -2.46 0.0 2.05 -3.0; … ; -1.23 0.0 2.05 -3.0; -0.984 0.0 2.05 -3.0]), [-2.829 0.0 2.05 -3.0; -2.46 0.0 2.05 -3.0; … ; -1.23 0.0 2.05 -3.0; -0.984 0.0 2.05 -3.0], 2051×108 extrapolate(interpolate((0.0:0.001:2.05,::Vector{Float64}), ::Matrix{Float64}, Gridded(Linear())), Flat()) with element type Float64:
319.644 319.644 319.644 319.89 … 316.077 315.954 315.831 315.708
319.644 319.644 319.644 319.89 316.077 315.954 315.831 315.708
319.645 319.644 319.645 319.89 316.077 315.954 315.831 315.708
319.645 319.645 319.645 319.891 316.078 315.954 315.831 315.708
319.645 319.645 319.645 319.891 316.078 315.955 315.831 315.708
319.645 319.645 319.645 319.891 … 316.078 315.955 315.832 315.708
319.646 319.645 319.646 319.891 316.078 315.955 315.832 315.709
319.646 319.646 319.646 319.892 316.078 315.955 315.832 315.709
319.646 319.646 319.646 319.892 316.079 315.955 315.832 315.709
319.646 319.646 319.646 319.892 316.079 315.955 315.832 315.709
⋮ ⋱ ⋮
322.44 322.075 322.44 322.199 318.022 317.413 317.046 316.68
322.444 322.079 322.444 322.203 318.025 317.415 317.048 316.682
322.448 322.082 322.448 322.206 318.028 317.417 317.05 316.683
322.452 322.086 322.452 322.21 … 318.03 317.419 317.052 316.685
322.456 322.089 322.456 322.213 318.033 317.421 317.054 316.686
322.46 322.093 322.46 322.217 318.036 317.423 317.056 316.688
322.465 322.097 322.465 322.22 318.039 317.426 317.057 316.689
322.469 322.1 322.469 322.224 318.042 317.428 317.059 316.691
322.473 322.104 322.473 322.227 … 318.045 317.43 317.061 316.692, 108-element extrapolate(interpolate((::Vector{Float64},), ::Vector{Float64}, Gridded(Linear())), Flat()) with element type Float64:
354589.48
354562.67000000004
354589.48
354571.61
354607.32
354598.4
354553.72
354589.48
354571.61
354571.61
⋮
355082.14
354740.58
354517.9
354400.94
354310.42000000004
354264.98
354219.43
354192.04000000004
354164.6, 108-element extrapolate(interpolate((::Vector{Float64},), ::Vector{Float64}, Gridded(Linear())), Flat()) with element type Float64:
230168.87
230224.3
230168.87
230205.81999999998
230131.96
230150.41
230242.79
230168.87
230205.81999999998
230205.81999999998
⋮
229148.40000000002
229856.25
230316.84999999998
230558.51
230745.38999999998
230839.16
230933.15000000002
230989.65000000002
231046.23), GasChromatographySimulator.Substance("C14", "629-59-4", 459.98, 36.76, 126.76, 0.001, "Leppert2020b, alkane, alkanes", 0.00010002700149772162, 0.0, 0.0), GasChromatographySimulator.Options(OwrenZen5(), 1.0e-6, 0.001, "inlet", true, false, "Blumberg", "Pressure")], Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}(), SciMLBase.StandardODEProblem()), OwrenZen5(), OrdinaryDiffEq.InterpolationData{SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}}(SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}(GasChromatographySimulator.odesystem_r!, LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, SciMLBase.DEFAULT_OBSERVED, nothing), [[0.0, 0.0], [0.09434297519119461, 0.014588989674416568], [1.0376718697875846, 0.16043981547407277], [1.7198895356224613, 0.2659188456150861], [1.841714908137734, 0.28475413218691814], [2.7074486448696806, 0.405047515340941], [3.090970835225302, 0.45940277933306084], [3.2565226698332648, 0.4827801647583014], [3.601977834432838, 0.5311641571400668], [3.6699574273212576, 0.5406223396534391] … [24.188994509416514, 0.001647875027462439], [24.654159194142853, 0.001530556961155621], [25.015032955050962, 0.0014540688959208494], [25.20460724778876, 0.0014200984644074217], [26.081644849484665, 0.0012900787340708337], [26.44600877997753, 0.0012492273825221807], [26.93811804945018, 0.001201383266977195], [27.174550808272325, 0.0011807779553976233], [28.371426573269147, 0.0011289585417235874], [28.52188731865048, 0.0011305414127862122]], [0.0, 9.999999999999999e-5, 0.0010999999999999998, 0.0018233003758987769, 0.0019524692648474609, 0.0028788714542471016, 0.003293933793629155, 0.003473616768223839, 0.0038495518166723314, 0.003923687659220228 … 0.831689485573404, 0.9426517603207641, 1.034935428040448, 1.0854388624641815, 1.3348340416593905, 1.4442796655808454, 1.594644777750869, 1.6669786003054576, 2.011525484732248, 2.05], [[[0.0, 0.0]], [[943.4390288453932, 145.89351749926558], [943.4359340763258, 145.89230901443466], [943.4343873073923, 145.89170516502142], [943.4297494549521, 145.88989517884193], [943.4297494549522, 145.889895178842], [943.4271009082737, 145.8888619552282], [943.4227995865657, 145.88718460202097], [943.4204848064758, 145.88628225036084]], [[943.4204848064758, 145.88628225036084], [943.3897090215066, 145.87430687111086], [943.3743826733013, 145.86835846481054], [943.3286490024876, 145.85066938270714], [943.3286490025014, 145.8506693827457], [943.3026808808049, 145.84066668273093], [943.2607392067847, 145.82457565785475], [943.2455429630039, 145.83929655349726]], [[943.2455429630039, 145.83929655349726], [943.2308232586411, 145.83633059918813], [943.2234346077735, 145.83483007274498], [943.2011537115685, 145.8302585183613], [943.2011537115719, 145.83025851836763], [943.1883443086272, 145.82759902866633], [943.1674088821522, 145.8232041909606], [943.1560743497375, 145.82080022031718]], [[943.1560743497375, 145.82080022031718], [943.1533691261527, 145.82022394001663], [943.152015596202, 145.81993524032302], [943.1479513413791, 145.8190669101584], [943.1479513413793, 145.81906691015848], [943.1456264401359, 145.8185692173594], [943.1418446444657, 145.81775813346675], [942.9131282323375, 134.72661679483556]], [[942.9131282323375, 134.72661679483556], [940.0818077250636, 133.0602739192752], [938.6792029685978, 132.24529340706704], [934.4853263655353, 129.81592666091808], [934.4856655106724, 129.81704180919922], [932.1066660982016, 128.45080378230315], [928.2686830490678, 126.26753605391592], [926.2158812596526, 125.10933469627894]], [[926.2158812596526, 125.10933469627894], [925.1977426390224, 132.34048641478606], [924.891846916057, 132.15582118047104], [923.9739991754475, 131.63202779458052], [923.9755850641913, 131.57307411697312], [923.450483082576, 131.32861521722765], [922.6015720866076, 130.8178707658881], [922.1446820104883, 130.56010604939686]], [[922.1446820104883, 130.56010604939686], [921.8812401762689, 130.40755152473753], [921.749631965773, 130.33143070566499], [921.3549248910518, 130.1032075338119], [921.3549251716731, 130.10320843727658], [921.1295318695991, 129.97299711465058], [920.7635066274252, 129.76171915603754], [920.5665382015567, 129.64811464057257]], [[920.5665382015567, 129.64811464057257], [920.0173620546517, 129.33156110555024], [919.743264443004, 129.17396204747092], [918.9214815239473, 128.70176404701556], [918.921484074519, 128.7017722270229], [918.452559661427, 128.43281244609295], [917.691595947123, 127.9971189443586], [917.2823750734162, 127.76320425971502]], [[917.2823750734162, 127.76320425971502], [917.1748304081565, 127.70177033129508], [917.1210769551227, 127.67107923945261], [916.9598363223287, 127.57902910628668], [916.9598363416155, 127.5790291675552], [916.8677246202442, 127.5264626397337], [916.7180831088551, 127.44109422150838], [916.6375274133983, 127.39515329235721]] … [[4.974670584092588, -0.0016974298435641264], [4.856704476424118, -0.0015898854544480817], [4.802622512023197, -0.0015441386523255044], [4.646109338883215, -0.001410069669694866], [4.647021752007199, -0.0014140701177656804], [4.563102428101856, -0.0013416534344114913], [4.437009412900014, -0.0012471167690421014], [4.373211724555932, -0.001195810348732913]], [[4.373211724555932, -0.001195810348732913], [4.308156755054486, -0.001144359590438196], [4.277498702564764, -0.0011211948383378948], [4.188132265288372, -0.0010531560710340627], [4.188347350588086, -0.0010539735938404477], [4.139765343775659, -0.0010171016085517553], [4.065089449043437, -0.0009624883837391796], [4.026734691927916, -0.000934752883253532]], [[4.026734691927916, -0.000934752883253532], [3.9854531364117007, -0.0009050267940513119], [3.965726060994671, -0.0008912449475499942], [3.907986319908351, -0.0008506068746021937], [3.9080585454506696, -0.0008508554667840569], [3.8764065640043035, -0.0008286277207101859], [3.8285923787408915, -0.0007144113234187162], [3.8042493775223503, -0.0007019242939583612]], [[3.8042493775223503, -0.0007019242939583612], [3.786854017082735, -0.0006917897238507972], [3.7783531686145513, -0.0006868945194004011], [3.753202927439606, -0.0006723320505910193], [3.7532098786089834, -0.0006723509877281336], [3.7391613805923796, -0.0006642168639465721], [3.716845559737066, -0.0006513379189695054], [3.7050814095820876, -0.0006445518366638028]], [[3.7050814095820876, -0.0006445518366638028], [3.63097593221394, -0.0006011753132083794], [3.5980200529623207, -0.0005828015125175579], [3.5063144595268803, -0.0005287524951372439], [3.5069603825018643, -0.0005305269942024746], [3.4605182041511307, -0.0005011054033975129], [3.3979105869472264, -0.00041929655922884963], [3.3694214934091806, -0.00040292272662444063]], [[3.3694214934091806, -0.00040292272662444063], [3.3542417841641483, -0.0003925802727507387], [3.3471796502181643, -0.0003876557078243811], [3.327470238881458, -0.0003729279569360881], [3.327487339996513, -0.0003729796082674483], [3.317355276180605, -0.0003647387843072492], [3.3027158361544404, -0.0003517423390591263], [3.295759947661572, -0.00034487356003287857]], [[3.295759947661572, -0.00034487356003287857], [3.2846645944151844, -0.00033235728753046117], [3.280063860077342, -0.0003264193572082684], [3.269511784335494, -0.00030838902510532543], [3.2695308834302006, -0.0003084958189282956], [3.265883085181301, -0.0002982242562443258], [3.262698882327278, -0.0003145216705242903], [3.2628979660621598, -0.0003038616785610102]], [[3.2628979660621598, -0.0003038616785610102], [3.263824903322812, -0.00029752037629855147], [3.2645255407362077, -0.0002944017215598364], [3.2676199235646504, -0.00028490632513666306], [3.267619166645671, -0.00028491833118709966], [3.2700668862823012, -0.00027945443408162703], [3.2751292335862887, -0.00027053458044544476], [3.278427156920703, -0.000265688551069525]], [[3.278427156920703, -0.000265688551069525], [3.309734979340666, -0.00023299433552799497], [3.3318113931609927, -0.00021703254093414614], [3.4324272335713135, -0.0001602006236329635], [3.4316890620873295, -0.00016205273978650776], [3.516196459088921, -0.00012296995322982375], [3.704439625955943, -4.486806367025656e-5], [3.8397845200987337, 1.1109661982819938e-5]], [[3.8397845200987337, 1.1109661982819938e-5], [3.862395703784729, 2.063641339340055e-5], [3.873897000912461, 2.5459947080581522e-5], [3.9095722516392177, 4.058699278945981e-5], [3.9095680498999505, 4.057694564145106e-5], [3.930685581650487, 4.959968505784248e-5], [3.9661662560995254, 6.485301961625342e-5], [3.985891139220783, 7.339625698823504e-5]]], true, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}([28.52188731865048, 0.0011305414127862122], [28.371426573269147, 0.0011289585417235874], [3.8397845200987337, 1.1109661982819938e-5], [3.862395703784729, 2.063641339340055e-5], [3.873897000912461, 2.5459947080581522e-5], [3.9095722516392177, 4.058699278945981e-5], [3.9095680498999505, 4.057694564145106e-5], [3.930685581650487, 4.959968505784248e-5], [3.9661662560995254, 6.485301961625342e-5], [3.985891139220783, 7.339625698823504e-5], [-2.9126008544290463e-8, -2.2877191472406176e-11], [28.502765866368854, 0.001130209429283303], [-1.0211451673493663e-6, -1.0737736114919524e-5], OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}(0.16666666666666666, 0.0625, 0.1875, 0.25, -0.75, -0.75, 3.75, -3.0, 0.5, 0.26895043731778423, -0.7084548104956269, 0.8658892128279884, 0.15462307371928363, 0.06184922948771345, -0.02947695035460993, 0.18500664893617022, 0.4802345261121857, -0.5337849069148937, -0.013090093085106383, 0.7861107753062541, 0.08783068783068783, 0.3006060606060606, 0.22777777777777777, 0.027777777777777776, 0.06218596218596219, 0.2938217338217338, 0.16666666666666666, 0.25, 0.5, 0.5, 0.6428571428571429, 0.875, -0.19894179894179895, 0.9115151515151515, -1.9777777777777779, -0.1111111111111111, 1.67013727013727, -0.2938217338217338, 1.892063492063492, -6.067155067155067, 7.282458282458283, -4.0195360195360195, -7.214545454545455, 20.676923076923078, -20.31142191142191, 7.14965034965035, 7.866666666666666, -18.78205128205128, 13.508547008547009, -2.3653846153846154, 2.0, -5.294871794871795, 4.534188034188034, -1.2115384615384615, -1.4924630924630924, 1.5785667324128863, 1.1958838881915805, -1.219801565955412, -7.051721611721612, 16.273203719357564, -11.978886071193763, 3.0512256973795435, 4.0, -8.384615384615385, 5.769230769230769, -1.3846153846153846))), true, 0, DiffEqBase.DEStats
Number of function 1 evaluations: 1935
Number of function 2 evaluations: 0
Number of W matrix evaluations: 0
Number of linear solves: 0
Number of Jacobians created: 0
Number of nonlinear solver iterations: 0
Number of nonlinear solver convergence failures: 0
Number of rootfind condition calls: 0
Number of accepted steps: 105
Number of rejected steps: 171, :Success), SciMLBase.ODESolution{Float64, 2, Vector{Vector{Float64}}, Nothing, Nothing, Vector{Float64}, Vector{Vector{Vector{Float64}}}, SciMLBase.ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Any}, SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}, SciMLBase.StandardODEProblem}, OwrenZen5, OrdinaryDiffEq.InterpolationData{SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}}, DiffEqBase.DEStats}([[0.0, 0.0], [0.23117913783421878, 0.09024529694478223], [1.574385393980802, 0.6145511104617498], [1.8591495237703761, 0.7257156906101045], [2.666490396838602, 1.007016450676386], [3.028008573238914, 1.1358580209477644], [3.1840567611675654, 1.191281224213255], [3.5953113681785385, 1.3359402820142519], [3.673395721454011, 1.3631777363452406], [4.464265114474897, 1.7477229428491785] … [26.28137805726213, 0.001590937289770443], [27.042308008410178, 0.0014509975756534438], [27.35399707096179, 0.001399330042138641], [27.859613003410928, 0.0013269670685538628], [28.11621860711866, 0.0012958126076423571], [28.763097228449062, 0.0012331120212081307], [29.04609243863333, 0.001214992031823088], [29.63349761019823, 0.0011924610648972774], [30.316879615769565, 0.0011811185643833002], [30.45891417998466, 0.0011834685623630331]], nothing, nothing, [0.0, 9.999999999999999e-5, 0.0006810660633434012, 0.0008042590189821388, 0.0011568689283661983, 0.0013166164425427505, 0.0013857721386077008, 0.0015685942278979637, 0.0016033994502080398, 0.0019514516733088005 … 0.9246269094893373, 1.11508473802387, 1.198538653364214, 1.3394540863194304, 1.4129427134836385, 1.600741674649008, 1.6823211899584674, 1.8455288541911827, 2.0174212621848313, 2.05], [[[0.0, 0.0]], [[2311.8199812565654, 902.4867109186533], [2311.810429979134, 902.4754359938817], [2311.8056585919853, 902.4698055031519], [2311.791361376418, 902.452941704263], [2311.7913613764194, 902.4529417042656], [2311.783202964902, 902.4433239322756], [2311.7699632691824, 902.4277240342915], [2311.762843290901, 902.4193389512373]], [[2311.762843290901, 902.4193389512373], [2311.70789628134, 902.3547268597873], [2311.680566300994, 902.322656118554], [2311.5991484606793, 902.227378046699], [2311.599148460719, 902.2273780470775], [2311.580919399806, 902.3437228098664], [2311.5553480470176, 902.3530706519853], [2311.5413466122686, 902.3577460499253]], [[2311.5413466122686, 902.3577460499253], [2311.5373593778813, 902.3590261218869], [2311.5353608976498, 902.3596589052175], [2311.529346033868, 902.3615282606221], [2311.529346033891, 902.3615282606405], [2311.5258958813192, 902.362576932348], [2311.5202690825718, 902.3642507268249], [2310.03903618379, 827.5977428890628]], [[2310.03903618379, 827.5977428890628], [2303.156933685158, 817.4069783197467], [2299.747330574733, 812.4221030412417], [2289.551519506664, 797.5609183900003], [2289.5523394432075, 797.5676975078991], [2283.7680673087457, 789.2085834418563], [2274.4354449075254, 775.8483349765094], [2269.4432563678233, 768.7597674982713]], [[2269.4432563678233, 768.7597674982713], [2266.436889794435, 764.5065423186124], [2265.114873585861, 814.1697207156369], [2262.8740792967274, 810.5656697381089], [2262.8721119862034, 811.9788376435137], [2261.5951051496627, 808.7092942510276], [2259.520791370235, 805.9081163708622], [2258.4047109908884, 804.2448782105935]], [[2258.4047109908884, 804.2448782105935], [2257.7612416679635, 803.3031875436634], [2257.4397858944626, 802.8333150926892], [2256.475713778459, 801.4245660168395], [2256.475714474562, 801.4245716727818], [2255.925198121739, 800.6208287678929], [2255.0312031148187, 799.3167096480861], [2254.5501248154874, 798.6154907023542]], [[2254.5501248154874, 798.6154907023542], [2252.8554614015043, 796.147056749619], [2252.010066615894, 794.9195648733637], [2249.475922554424, 791.2430269186208], [2249.475935314089, 791.2431302134701], [2248.0304905368857, 789.1508307351112], [2245.685762155162, 785.7644082263301], [2244.4253099109933, 783.9477660489156]], [[2244.4253099109933, 783.9477660489156], [2244.1055713549517, 783.4873130942063], [2243.9457713647726, 783.2573246818095], [2243.4664448452004, 782.5675727938183], [2243.4664449316188, 782.5675734853841], [2243.1926391382012, 782.1737382693265], [2242.747852388304, 781.534236618918], [2242.8431359533215, 1050.1925114645585]], [[2242.8431359533215, 1050.1925114645585], [2252.498082051415, 1067.7719203369152], [2257.3897621849405, 1076.8353687713832], [2272.136678123124, 1104.2935371771105], [2272.1342556367545, 1104.2696823380393], [2280.654439117199, 1120.3556283670252], [2294.6394210317844, 1147.0516794619368], [2302.2450707862436, 1161.7449215649049]] … [[4.414093265106183, -0.0009589664107105937], [4.378709434808316, -0.0009378475511434574], [4.361609023205072, -0.0009278530557562477], [4.311205408622529, -0.0008982089905419399], [4.31124333013392, -0.0008983122754768489], [4.283310697561846, -0.0008819160267053837], [4.239338840357653, -0.0008563901615036074], [4.216328837244285, -0.0008430862427324984]], [[4.216328837244285, -0.0008430862427324984], [4.133646150747438, -0.0007949983291664032], [4.0959637643155276, -0.0007742068878016427], [3.988311514497323, -0.0007129902191591482], [3.9888973663197738, -0.0007145509866504454], [3.932170039417899, -0.0006813071568293652], [3.8455139585880596, -0.0006921016099998849], [3.8026165954922226, -0.0006624032974389569]], [[3.8026165954922226, -0.0006624032974389569], [3.778643930055282, -0.0006471311003904876], [3.767142680481413, -0.0006398978970649936], [3.7336014641802957, -0.0006184420704024062], [3.7336264638334384, -0.0006185146801340328], [3.715288660937536, -0.0006066397851107635], [3.686827397085888, -0.0005881294933765793], [3.6721514820736796, -0.0005784701379013362]], [[3.6721514820736796, -0.0005784701379013362], [3.6405379110960485, -0.0005571847781544815], [3.625905430427393, -0.0005473952933997489], [3.5846397803222807, -0.000518389179393209], [3.5847225976220987, -0.0005186408949485648], [3.563275079272653, -0.0005026968529159527], [3.532486371127257, -0.00045748107882788674], [3.5177830132724184, -0.0004466228375691612]], [[3.5177830132724184, -0.0004466228375691612], [3.50822503485339, -0.0004388126373604034], [3.503707032785416, -0.00043503984218669703], [3.4909118986893124, -0.00042375091482696535], [3.490917482250542, -0.0004237707819642161], [3.4841796550419506, -0.00041742652977524346], [3.474143867691178, -0.00040733027012589964], [3.469205249409047, -0.0004019752787419614]], [[3.469205249409047, -0.0004019752787419614], [3.454739502247584, -0.0003838275159015189], [3.449153129593675, -0.0003754084670134017], [3.4380413614766363, -0.0003497612921753107], [3.43808667613112, -0.00035005265131891894], [3.435911689392776, -0.00033540499578464124], [3.439877711296791, -0.00025684261191226984], [3.4473603462344187, -0.0002456460171598433]], [[3.4473603462344187, -0.0002456460171598433], [3.453026705171669, -0.00023796438980475218], [3.4562059280426287, -0.0002341558888235575], [3.467343995995914, -0.00022235903293063043], [3.4673396917521475, -0.0002223792087620095], [3.4747808621756118, -0.00021545855990531587], [3.4886031353447855, -0.00020395485846358614], [3.496971182652245, -0.00019758678861431385]], [[3.496971182652245, -0.00019758678861431385], [3.5227914704088232, -0.00017966970094283712], [3.5373598161731103, -0.0001706645369025919], [3.5898941054761897, -0.00014071838147883308], [3.589804594223424, -0.0001409527202450916], [3.625988961179403, -0.00012190233043025771], [3.695212281264358, -8.796302069460503e-5], [3.737381488154793, -0.00014736491989982784]], [[3.737381488154793, -0.00014736491989982784], [3.802301416487261, -0.0001252044688183772], [3.837301709549056, -0.00011371268221014165], [3.958695645873562, -7.258546772832852e-5], [3.9583777282009613, -7.316083526320871e-5], [4.039133686640716, -4.487589302335274e-5], [4.189716988816708, 8.495250594706735e-6], [4.282445095488264, 4.2710999473489055e-5]], [[4.282445095488264, 4.2710999473489055e-5], [4.307331659285374, 5.2091015397517015e-5], [4.319933127847012, 5.682499708335926e-5], [4.358787475048601, 7.163988299246546e-5], [4.358782916223417, 7.162895367196563e-5], [4.381622865570231, 8.04345667321702e-5], [4.419741505837462, 9.526194986966764e-5], [4.440800929197239, 0.00010353553707466369]]], SciMLBase.ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Any}, SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}, SciMLBase.StandardODEProblem}(SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}(GasChromatographySimulator.odesystem_r!, LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, SciMLBase.DEFAULT_OBSERVED, nothing), [0.0, 0.0], (0.0, 2.05), Any[GasChromatographySimulator.Column(2.05, 0.000104, [0.000104], 1.04e-7, [1.04e-7], "FS5ms", "He"), GasChromatographySimulator.Program{GasChromatographySimulator.var"#gf#2"{String, Matrix{Float64}}}([0.0, 0.9200000000000003, 0.9100000000000007, 0.9199999999999986, 0.9199999999999995, 0.910000000000001, 0.9199999999999999, 0.9199999999999982, 0.9200000000000008, 0.9300000000000006 … 0.9199999999999875, 0.9100000000000108, 0.9200000000000017, 0.9099999999999966, 0.9200000000000017, 0.9099999999999966, 0.9200000000000017, 0.9099999999999966, 0.9099999999999966, 0.9200000000000017], [49.323, 48.954, 49.323, 49.077, 49.569, 49.446, 48.831, 49.323, 49.077, 49.077 … 63.099, 56.211, 51.414, 48.339, 46.74, 45.51, 44.895, 44.28, 43.911, 43.542], [354589.48, 354562.67000000004, 354589.48, 354571.61, 354607.32, 354598.4, 354553.72, 354589.48, 354571.61, 354571.61 … 355560.34, 355082.14, 354740.58, 354517.9, 354400.94, 354310.42000000004, 354264.98, 354219.43, 354192.04000000004, 354164.6], [230168.87, 230224.3, 230168.87, 230205.81999999998, 230131.96, 230150.41, 230242.79, 230168.87, 230205.81999999998, 230205.81999999998 … 228154.50999999998, 229148.40000000002, 229856.25, 230316.84999999998, 230558.51, 230745.38999999998, 230839.16, 230933.15000000002, 230989.65000000002, 231046.23], GasChromatographySimulator.var"#gf#2"{String, Matrix{Float64}}("outlet", [-2.829 0.0 2.05 -3.0; -2.46 0.0 2.05 -3.0; … ; -1.23 0.0 2.05 -3.0; -0.984 0.0 2.05 -3.0]), [-2.829 0.0 2.05 -3.0; -2.46 0.0 2.05 -3.0; … ; -1.23 0.0 2.05 -3.0; -0.984 0.0 2.05 -3.0], 2051×108 extrapolate(interpolate((0.0:0.001:2.05,::Vector{Float64}), ::Matrix{Float64}, Gridded(Linear())), Flat()) with element type Float64:
319.644 319.644 319.644 319.89 … 316.077 315.954 315.831 315.708
319.644 319.644 319.644 319.89 316.077 315.954 315.831 315.708
319.645 319.644 319.645 319.89 316.077 315.954 315.831 315.708
319.645 319.645 319.645 319.891 316.078 315.954 315.831 315.708
319.645 319.645 319.645 319.891 316.078 315.955 315.831 315.708
319.645 319.645 319.645 319.891 … 316.078 315.955 315.832 315.708
319.646 319.645 319.646 319.891 316.078 315.955 315.832 315.709
319.646 319.646 319.646 319.892 316.078 315.955 315.832 315.709
319.646 319.646 319.646 319.892 316.079 315.955 315.832 315.709
319.646 319.646 319.646 319.892 316.079 315.955 315.832 315.709
⋮ ⋱ ⋮
322.44 322.075 322.44 322.199 318.022 317.413 317.046 316.68
322.444 322.079 322.444 322.203 318.025 317.415 317.048 316.682
322.448 322.082 322.448 322.206 318.028 317.417 317.05 316.683
322.452 322.086 322.452 322.21 … 318.03 317.419 317.052 316.685
322.456 322.089 322.456 322.213 318.033 317.421 317.054 316.686
322.46 322.093 322.46 322.217 318.036 317.423 317.056 316.688
322.465 322.097 322.465 322.22 318.039 317.426 317.057 316.689
322.469 322.1 322.469 322.224 318.042 317.428 317.059 316.691
322.473 322.104 322.473 322.227 … 318.045 317.43 317.061 316.692, 108-element extrapolate(interpolate((::Vector{Float64},), ::Vector{Float64}, Gridded(Linear())), Flat()) with element type Float64:
354589.48
354562.67000000004
354589.48
354571.61
354607.32
354598.4
354553.72
354589.48
354571.61
354571.61
⋮
355082.14
354740.58
354517.9
354400.94
354310.42000000004
354264.98
354219.43
354192.04000000004
354164.6, 108-element extrapolate(interpolate((::Vector{Float64},), ::Vector{Float64}, Gridded(Linear())), Flat()) with element type Float64:
230168.87
230224.3
230168.87
230205.81999999998
230131.96
230150.41
230242.79
230168.87
230205.81999999998
230205.81999999998
⋮
229148.40000000002
229856.25
230316.84999999998
230558.51
230745.38999999998
230839.16
230933.15000000002
230989.65000000002
231046.23), GasChromatographySimulator.Substance("C15", "629-62-9", 474.4, 37.39, 129.62, 0.001, "Leppert2020b, alkane, alkanes", 9.64976601701651e-5, 0.0, 0.0), GasChromatographySimulator.Options(OwrenZen5(), 1.0e-6, 0.001, "inlet", true, false, "Blumberg", "Pressure")], Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}(), SciMLBase.StandardODEProblem()), OwrenZen5(), OrdinaryDiffEq.InterpolationData{SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}}(SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}(GasChromatographySimulator.odesystem_r!, LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, SciMLBase.DEFAULT_OBSERVED, nothing), [[0.0, 0.0], [0.23117913783421878, 0.09024529694478223], [1.574385393980802, 0.6145511104617498], [1.8591495237703761, 0.7257156906101045], [2.666490396838602, 1.007016450676386], [3.028008573238914, 1.1358580209477644], [3.1840567611675654, 1.191281224213255], [3.5953113681785385, 1.3359402820142519], [3.673395721454011, 1.3631777363452406], [4.464265114474897, 1.7477229428491785] … [26.28137805726213, 0.001590937289770443], [27.042308008410178, 0.0014509975756534438], [27.35399707096179, 0.001399330042138641], [27.859613003410928, 0.0013269670685538628], [28.11621860711866, 0.0012958126076423571], [28.763097228449062, 0.0012331120212081307], [29.04609243863333, 0.001214992031823088], [29.63349761019823, 0.0011924610648972774], [30.316879615769565, 0.0011811185643833002], [30.45891417998466, 0.0011834685623630331]], [0.0, 9.999999999999999e-5, 0.0006810660633434012, 0.0008042590189821388, 0.0011568689283661983, 0.0013166164425427505, 0.0013857721386077008, 0.0015685942278979637, 0.0016033994502080398, 0.0019514516733088005 … 0.9246269094893373, 1.11508473802387, 1.198538653364214, 1.3394540863194304, 1.4129427134836385, 1.600741674649008, 1.6823211899584674, 1.8455288541911827, 2.0174212621848313, 2.05], [[[0.0, 0.0]], [[2311.8199812565654, 902.4867109186533], [2311.810429979134, 902.4754359938817], [2311.8056585919853, 902.4698055031519], [2311.791361376418, 902.452941704263], [2311.7913613764194, 902.4529417042656], [2311.783202964902, 902.4433239322756], [2311.7699632691824, 902.4277240342915], [2311.762843290901, 902.4193389512373]], [[2311.762843290901, 902.4193389512373], [2311.70789628134, 902.3547268597873], [2311.680566300994, 902.322656118554], [2311.5991484606793, 902.227378046699], [2311.599148460719, 902.2273780470775], [2311.580919399806, 902.3437228098664], [2311.5553480470176, 902.3530706519853], [2311.5413466122686, 902.3577460499253]], [[2311.5413466122686, 902.3577460499253], [2311.5373593778813, 902.3590261218869], [2311.5353608976498, 902.3596589052175], [2311.529346033868, 902.3615282606221], [2311.529346033891, 902.3615282606405], [2311.5258958813192, 902.362576932348], [2311.5202690825718, 902.3642507268249], [2310.03903618379, 827.5977428890628]], [[2310.03903618379, 827.5977428890628], [2303.156933685158, 817.4069783197467], [2299.747330574733, 812.4221030412417], [2289.551519506664, 797.5609183900003], [2289.5523394432075, 797.5676975078991], [2283.7680673087457, 789.2085834418563], [2274.4354449075254, 775.8483349765094], [2269.4432563678233, 768.7597674982713]], [[2269.4432563678233, 768.7597674982713], [2266.436889794435, 764.5065423186124], [2265.114873585861, 814.1697207156369], [2262.8740792967274, 810.5656697381089], [2262.8721119862034, 811.9788376435137], [2261.5951051496627, 808.7092942510276], [2259.520791370235, 805.9081163708622], [2258.4047109908884, 804.2448782105935]], [[2258.4047109908884, 804.2448782105935], [2257.7612416679635, 803.3031875436634], [2257.4397858944626, 802.8333150926892], [2256.475713778459, 801.4245660168395], [2256.475714474562, 801.4245716727818], [2255.925198121739, 800.6208287678929], [2255.0312031148187, 799.3167096480861], [2254.5501248154874, 798.6154907023542]], [[2254.5501248154874, 798.6154907023542], [2252.8554614015043, 796.147056749619], [2252.010066615894, 794.9195648733637], [2249.475922554424, 791.2430269186208], [2249.475935314089, 791.2431302134701], [2248.0304905368857, 789.1508307351112], [2245.685762155162, 785.7644082263301], [2244.4253099109933, 783.9477660489156]], [[2244.4253099109933, 783.9477660489156], [2244.1055713549517, 783.4873130942063], [2243.9457713647726, 783.2573246818095], [2243.4664448452004, 782.5675727938183], [2243.4664449316188, 782.5675734853841], [2243.1926391382012, 782.1737382693265], [2242.747852388304, 781.534236618918], [2242.8431359533215, 1050.1925114645585]], [[2242.8431359533215, 1050.1925114645585], [2252.498082051415, 1067.7719203369152], [2257.3897621849405, 1076.8353687713832], [2272.136678123124, 1104.2935371771105], [2272.1342556367545, 1104.2696823380393], [2280.654439117199, 1120.3556283670252], [2294.6394210317844, 1147.0516794619368], [2302.2450707862436, 1161.7449215649049]] … [[4.414093265106183, -0.0009589664107105937], [4.378709434808316, -0.0009378475511434574], [4.361609023205072, -0.0009278530557562477], [4.311205408622529, -0.0008982089905419399], [4.31124333013392, -0.0008983122754768489], [4.283310697561846, -0.0008819160267053837], [4.239338840357653, -0.0008563901615036074], [4.216328837244285, -0.0008430862427324984]], [[4.216328837244285, -0.0008430862427324984], [4.133646150747438, -0.0007949983291664032], [4.0959637643155276, -0.0007742068878016427], [3.988311514497323, -0.0007129902191591482], [3.9888973663197738, -0.0007145509866504454], [3.932170039417899, -0.0006813071568293652], [3.8455139585880596, -0.0006921016099998849], [3.8026165954922226, -0.0006624032974389569]], [[3.8026165954922226, -0.0006624032974389569], [3.778643930055282, -0.0006471311003904876], [3.767142680481413, -0.0006398978970649936], [3.7336014641802957, -0.0006184420704024062], [3.7336264638334384, -0.0006185146801340328], [3.715288660937536, -0.0006066397851107635], [3.686827397085888, -0.0005881294933765793], [3.6721514820736796, -0.0005784701379013362]], [[3.6721514820736796, -0.0005784701379013362], [3.6405379110960485, -0.0005571847781544815], [3.625905430427393, -0.0005473952933997489], [3.5846397803222807, -0.000518389179393209], [3.5847225976220987, -0.0005186408949485648], [3.563275079272653, -0.0005026968529159527], [3.532486371127257, -0.00045748107882788674], [3.5177830132724184, -0.0004466228375691612]], [[3.5177830132724184, -0.0004466228375691612], [3.50822503485339, -0.0004388126373604034], [3.503707032785416, -0.00043503984218669703], [3.4909118986893124, -0.00042375091482696535], [3.490917482250542, -0.0004237707819642161], [3.4841796550419506, -0.00041742652977524346], [3.474143867691178, -0.00040733027012589964], [3.469205249409047, -0.0004019752787419614]], [[3.469205249409047, -0.0004019752787419614], [3.454739502247584, -0.0003838275159015189], [3.449153129593675, -0.0003754084670134017], [3.4380413614766363, -0.0003497612921753107], [3.43808667613112, -0.00035005265131891894], [3.435911689392776, -0.00033540499578464124], [3.439877711296791, -0.00025684261191226984], [3.4473603462344187, -0.0002456460171598433]], [[3.4473603462344187, -0.0002456460171598433], [3.453026705171669, -0.00023796438980475218], [3.4562059280426287, -0.0002341558888235575], [3.467343995995914, -0.00022235903293063043], [3.4673396917521475, -0.0002223792087620095], [3.4747808621756118, -0.00021545855990531587], [3.4886031353447855, -0.00020395485846358614], [3.496971182652245, -0.00019758678861431385]], [[3.496971182652245, -0.00019758678861431385], [3.5227914704088232, -0.00017966970094283712], [3.5373598161731103, -0.0001706645369025919], [3.5898941054761897, -0.00014071838147883308], [3.589804594223424, -0.0001409527202450916], [3.625988961179403, -0.00012190233043025771], [3.695212281264358, -8.796302069460503e-5], [3.737381488154793, -0.00014736491989982784]], [[3.737381488154793, -0.00014736491989982784], [3.802301416487261, -0.0001252044688183772], [3.837301709549056, -0.00011371268221014165], [3.958695645873562, -7.258546772832852e-5], [3.9583777282009613, -7.316083526320871e-5], [4.039133686640716, -4.487589302335274e-5], [4.189716988816708, 8.495250594706735e-6], [4.282445095488264, 4.2710999473489055e-5]], [[4.282445095488264, 4.2710999473489055e-5], [4.307331659285374, 5.2091015397517015e-5], [4.319933127847012, 5.682499708335926e-5], [4.358787475048601, 7.163988299246546e-5], [4.358782916223417, 7.162895367196563e-5], [4.381622865570231, 8.04345667321702e-5], [4.419741505837462, 9.526194986966764e-5], [4.440800929197239, 0.00010353553707466369]]], true, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}([30.45891417998466, 0.0011834685623630331], [30.316879615769565, 0.0011811185643833002], [4.282445095488264, 4.2710999473489055e-5], [4.307331659285374, 5.2091015397517015e-5], [4.319933127847012, 5.682499708335926e-5], [4.358787475048601, 7.163988299246546e-5], [4.358782916223417, 7.162895367196563e-5], [4.381622865570231, 8.04345667321702e-5], [4.419741505837462, 9.526194986966764e-5], [4.440800929197239, 0.00010353553707466369], [1.5913520717105364e-8, 1.2370116558861217e-12], [30.44087304479188, 0.0011830641692576135], [5.224414167116139e-7, 5.665351346059136e-7], OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}(0.16666666666666666, 0.0625, 0.1875, 0.25, -0.75, -0.75, 3.75, -3.0, 0.5, 0.26895043731778423, -0.7084548104956269, 0.8658892128279884, 0.15462307371928363, 0.06184922948771345, -0.02947695035460993, 0.18500664893617022, 0.4802345261121857, -0.5337849069148937, -0.013090093085106383, 0.7861107753062541, 0.08783068783068783, 0.3006060606060606, 0.22777777777777777, 0.027777777777777776, 0.06218596218596219, 0.2938217338217338, 0.16666666666666666, 0.25, 0.5, 0.5, 0.6428571428571429, 0.875, -0.19894179894179895, 0.9115151515151515, -1.9777777777777779, -0.1111111111111111, 1.67013727013727, -0.2938217338217338, 1.892063492063492, -6.067155067155067, 7.282458282458283, -4.0195360195360195, -7.214545454545455, 20.676923076923078, -20.31142191142191, 7.14965034965035, 7.866666666666666, -18.78205128205128, 13.508547008547009, -2.3653846153846154, 2.0, -5.294871794871795, 4.534188034188034, -1.2115384615384615, -1.4924630924630924, 1.5785667324128863, 1.1958838881915805, -1.219801565955412, -7.051721611721612, 16.273203719357564, -11.978886071193763, 3.0512256973795435, 4.0, -8.384615384615385, 5.769230769230769, -1.3846153846153846))), true, 0, DiffEqBase.DEStats
Number of function 1 evaluations: 1669
Number of function 2 evaluations: 0
Number of W matrix evaluations: 0
Number of linear solves: 0
Number of Jacobians created: 0
Number of nonlinear solver iterations: 0
Number of nonlinear solver convergence failures: 0
Number of rootfind condition calls: 0
Number of accepted steps: 104
Number of rejected steps: 134, :Success), SciMLBase.ODESolution{Float64, 2, Vector{Vector{Float64}}, Nothing, Nothing, Vector{Float64}, Vector{Vector{Vector{Float64}}}, SciMLBase.ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Any}, SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}, SciMLBase.StandardODEProblem}, OwrenZen5, OrdinaryDiffEq.InterpolationData{SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}}, DiffEqBase.DEStats}([[0.0, 0.0], [0.5900134570407313, 0.6044411078047436], [1.6799297323075075, 1.7210218398660224], [1.8358817650258428, 1.8808068075219373], [2.701533308765237, 2.6649436767155015], [3.040449203565888, 2.979449258312954], [3.18605794027395, 3.114171494130147], [3.569292659614239, 3.4653286133579204], [3.662765365084855, 3.5502290695252645], [3.7329508029428613, 3.635691226914565] … [26.86890859026053, 0.0019066929065681213], [27.085111222641146, 0.0018435653731137184], [27.89897483325349, 0.001642574729201287], [28.24123699926521, 0.0015740398218032235], [28.76474608764806, 0.001483385665271834], [29.00327608036615, 0.0014485246976928428], [29.79655587307284, 0.001352727178668517], [30.16475555114394, 0.0013181825874918503], [31.848433876083217, 0.0012426999199119247], [32.30360091951563, 0.0012580024380780058]], nothing, nothing, [0.0, 9.999999999999999e-5, 0.0002847337612905119, 0.00031116658028200776, 0.00045942037783018184, 0.000518207142986941, 0.0005435370416433854, 0.0006104115519867025, 0.000626768278422457, 0.0006390452081170286 … 0.7079808736190161, 0.7506413579667909, 0.9261888422568837, 1.0067917220773095, 1.1371228214504088, 1.1989902413006341, 1.4127439144888068, 1.5140996100544741, 1.9509772279095037, 2.05], [[[0.0, 0.0]], [[5900.246158986355, 6044.83510874486], [5900.208823209298, 6044.6931446374065], [5900.190190299194, 6044.622318607239], [5900.13443088657, 6044.410458206054], [5900.134430886576, 6044.410458206208], [5900.102662327614, 6044.289812562219], [5900.05118417178, 6044.094410916163], [5900.023539911262, 6043.989526715674]], [[5900.023539911262, 6043.989526715674], [5899.955671812488, 6043.732173759099], [5899.921857137462, 6043.604029673149], [5899.910812835936, 6044.477622600836], [5899.910814587102, 6044.477677070552], [5899.918154685183, 6044.595338014832], [5899.9298412435655, 6044.785757011416], [5899.936008760766, 6044.887875625908]], [[5899.936008760766, 6044.887875625908], [5899.937175450827, 6044.907320332474], [5899.9377576005245, 6044.917038550359], [5899.9394992635, 6044.946176484189], [5899.939499263521, 6044.946176484233], [5899.940491277182, 6044.962815510908], [5899.942098300871, 6044.989836521964], [5899.122073358127, 5518.323490586908]], [[5899.122073358127, 5518.323490586908], [5878.825331958072, 5439.741304634808], [5868.783881339114, 5401.433620731879], [5838.770099399922, 5287.326494994811], [5838.773338174216, 5287.396550993464], [5821.763762059283, 5223.3576954871005], [5794.349394340819, 5121.278865596431], [5779.699103216561, 5067.237202976381]], [[5779.699103216561, 5067.237202976381], [5772.537641207178, 5411.122801975275], [5770.621763251085, 5403.446445882468], [5764.871654049966, 5381.865273059957], [5764.884892490656, 5379.030222996303], [5761.592398578495, 5369.329311702418], [5756.276237938786, 5348.097060913284], [5753.414252553578, 5337.488706917605]], [[5753.414252553578, 5337.488706917605], [5751.7720277662365, 5331.212360075392], [5750.951632153723, 5328.080705278332], [5748.491206339984, 5318.691551432568], [5748.491208137694, 5318.691589563835], [5747.086233342781, 5313.3347747136895], [5744.804677734919, 5304.643099209853], [5743.576928963867, 5299.96965739842]], [[5743.576928963867, 5299.96965739842], [5739.257748773795, 5283.539977157217], [5737.103123532531, 5275.370076454101], [5730.644493520866, 5250.900000645241], [5730.6445263424575, 5250.90069426063], [5726.9606482896115, 5236.975097426934], [5720.984916485852, 5214.436610858581], [5717.772587159179, 5202.3460295983]], [[5717.772587159179, 5202.3460295983], [5716.725706610317, 5198.40906399599], [5716.2025594470115, 5196.44320649692], [5714.633429498205, 5190.54798159749], [5714.63342996971, 5190.547991444549], [5713.737186703198, 5187.18269095963], [5712.281416638328, 5181.719375046215], [5711.497860394141, 5178.78029278768]], [[5711.497860394141, 5178.78029278768], [5711.918653698657, 7105.641601056313], [5713.108410600102, 7112.361326053278], [5716.681758170693, 7127.754127577324], [5716.6768599862435, 7137.3106208227855], [5718.7253397717195, 7137.4147533856785], [5722.047810763259, 7156.295531145686], [5723.839871258092, 7163.8224623603255]] … [[5.562726702923472, -0.0017318477199292008], [5.491376113508145, -0.0016770316475531624], [5.457351698640298, -0.0016517749605705428], [5.357367542302385, -0.0015770756395107979], [5.357540240091108, -0.0015776729992370512], [5.30254624739978, -0.0015367472856382455], [5.2158186778414555, -0.0016003112057126805], [5.169787800807257, -0.0015599709946219759]], [[5.169787800807257, -0.0015599709946219759], [5.134722888861454, -0.0015319233167261016], [5.117638393910533, -0.001518517505426772], [5.067004121733963, -0.00147870225371593], [5.067028857360231, -0.0014787934326868802], [5.038733701039425, -0.0014566733660883041], [4.993790415032126, -0.0014219484069470162], [4.970082094243018, -0.0014037581525966937]], [[4.970082094243018, -0.0014037581525966937], [4.84417388208667, -0.0013071916203189113], [4.7873287708412935, -0.001266860345595337], [4.624066257887498, -0.0011482618266777007], [4.62535425619175, -0.001152862459206647], [4.538816846550226, -0.0010883498883868376], [4.412631523816708, -0.0009514767298661703], [4.350409464409863, -0.0009147187790340451]], [[4.350409464409863, -0.0009147187790340451], [4.313792982136471, -0.0008917803169154832], [4.2962075334711205, -0.0008810115382385452], [4.244604673895391, -0.0008491143243348125], [4.244655729461011, -0.0008492606436107458], [4.216250564674543, -0.0008316808535074609], [4.171870897623519, -0.0008045083412829925], [4.148806341825556, -0.0007904044245111766]], [[4.148806341825556, -0.0007904044245111766], [4.100659172232384, -0.0007607634852538664], [4.078096590129626, -0.0007472746350181197], [4.012986260946138, -0.0007074481759681026], [4.013136234712186, -0.0007078685756179803], [3.978211020878967, -0.0006861222941673282], [3.9259708997678673, -0.000605945296336964], [3.900262697229142, -0.0005915819956071183]], [[3.900262697229142, -0.0005915819956071183], [3.8845773555481924, -0.0005818592242650548], [3.876990098226995, -0.000577171185445633], [3.8547924713561668, -0.000563196687320663], [3.854801011204188, -0.000563219786175632], [3.8425873074199903, -0.0005554029078420268], [3.8234890419990317, -0.0005430212639085054], [3.813577036257711, -0.0005364881410074409]], [[3.813577036257711, -0.0005364881410074409], [3.770806534103811, -0.0005069207547443598], [3.752134840331409, -0.0004937605337682136], [3.7027566722711884, -0.00045439160220190266], [3.7030085322600836, -0.00045516368800858735], [3.6799973388305705, -0.00043326538937857166], [3.6525954904133804, -0.00037278904785710315], [3.6423525785088224, -0.00036232188845064213]], [[3.6423525785088224, -0.00036232188845064213], [3.6373445507814055, -0.00035502098199836104], [3.635311177334631, -0.00035149280837753235], [3.630920503937849, -0.0003407766336452609], [3.6309251215534286, -0.00034080969411659284], [3.629634957603638, -0.0003346901860602101], [3.629501755480385, -0.00032482347577920587], [3.6304574402761687, -0.0003194993777233923]], [[3.6304574402761687, -0.0003194993777233923], [3.651137816918319, -0.0002871344849314614], [3.6717236043576604, -0.00023961496952663798], [3.7882790240135695, -0.00019327749546959368], [3.786641612712305, -0.00014096638465755642], [3.8957885982727722, -0.00015102332334069745], [4.155405759164494, -5.2257736559979456e-5], [4.355363767536685, 3.8911641611371e-5]], [[4.355363767536685, 3.8911641611371e-5], [4.426943936699145, 7.255724578512663e-5], [4.464269740025859, 8.982892354077632e-5], [4.586559761105452, 0.00014843171765330622], [4.586419659781843, 0.00014804882654646605], [4.663061145524266, 0.0001858960231330962], [4.798741592943397, 0.0002540062331469067], [4.878182355067024, 0.0002950379127287144]]], SciMLBase.ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Any}, SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}, SciMLBase.StandardODEProblem}(SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}(GasChromatographySimulator.odesystem_r!, LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, SciMLBase.DEFAULT_OBSERVED, nothing), [0.0, 0.0], (0.0, 2.05), Any[GasChromatographySimulator.Column(2.05, 0.000104, [0.000104], 1.04e-7, [1.04e-7], "FS5ms", "He"), GasChromatographySimulator.Program{GasChromatographySimulator.var"#gf#2"{String, Matrix{Float64}}}([0.0, 0.9200000000000003, 0.9100000000000007, 0.9199999999999986, 0.9199999999999995, 0.910000000000001, 0.9199999999999999, 0.9199999999999982, 0.9200000000000008, 0.9300000000000006 … 0.9199999999999875, 0.9100000000000108, 0.9200000000000017, 0.9099999999999966, 0.9200000000000017, 0.9099999999999966, 0.9200000000000017, 0.9099999999999966, 0.9099999999999966, 0.9200000000000017], [49.323, 48.954, 49.323, 49.077, 49.569, 49.446, 48.831, 49.323, 49.077, 49.077 … 63.099, 56.211, 51.414, 48.339, 46.74, 45.51, 44.895, 44.28, 43.911, 43.542], [354589.48, 354562.67000000004, 354589.48, 354571.61, 354607.32, 354598.4, 354553.72, 354589.48, 354571.61, 354571.61 … 355560.34, 355082.14, 354740.58, 354517.9, 354400.94, 354310.42000000004, 354264.98, 354219.43, 354192.04000000004, 354164.6], [230168.87, 230224.3, 230168.87, 230205.81999999998, 230131.96, 230150.41, 230242.79, 230168.87, 230205.81999999998, 230205.81999999998 … 228154.50999999998, 229148.40000000002, 229856.25, 230316.84999999998, 230558.51, 230745.38999999998, 230839.16, 230933.15000000002, 230989.65000000002, 231046.23], GasChromatographySimulator.var"#gf#2"{String, Matrix{Float64}}("outlet", [-2.829 0.0 2.05 -3.0; -2.46 0.0 2.05 -3.0; … ; -1.23 0.0 2.05 -3.0; -0.984 0.0 2.05 -3.0]), [-2.829 0.0 2.05 -3.0; -2.46 0.0 2.05 -3.0; … ; -1.23 0.0 2.05 -3.0; -0.984 0.0 2.05 -3.0], 2051×108 extrapolate(interpolate((0.0:0.001:2.05,::Vector{Float64}), ::Matrix{Float64}, Gridded(Linear())), Flat()) with element type Float64:
319.644 319.644 319.644 319.89 … 316.077 315.954 315.831 315.708
319.644 319.644 319.644 319.89 316.077 315.954 315.831 315.708
319.645 319.644 319.645 319.89 316.077 315.954 315.831 315.708
319.645 319.645 319.645 319.891 316.078 315.954 315.831 315.708
319.645 319.645 319.645 319.891 316.078 315.955 315.831 315.708
319.645 319.645 319.645 319.891 … 316.078 315.955 315.832 315.708
319.646 319.645 319.646 319.891 316.078 315.955 315.832 315.709
319.646 319.646 319.646 319.892 316.078 315.955 315.832 315.709
319.646 319.646 319.646 319.892 316.079 315.955 315.832 315.709
319.646 319.646 319.646 319.892 316.079 315.955 315.832 315.709
⋮ ⋱ ⋮
322.44 322.075 322.44 322.199 318.022 317.413 317.046 316.68
322.444 322.079 322.444 322.203 318.025 317.415 317.048 316.682
322.448 322.082 322.448 322.206 318.028 317.417 317.05 316.683
322.452 322.086 322.452 322.21 … 318.03 317.419 317.052 316.685
322.456 322.089 322.456 322.213 318.033 317.421 317.054 316.686
322.46 322.093 322.46 322.217 318.036 317.423 317.056 316.688
322.465 322.097 322.465 322.22 318.039 317.426 317.057 316.689
322.469 322.1 322.469 322.224 318.042 317.428 317.059 316.691
322.473 322.104 322.473 322.227 … 318.045 317.43 317.061 316.692, 108-element extrapolate(interpolate((::Vector{Float64},), ::Vector{Float64}, Gridded(Linear())), Flat()) with element type Float64:
354589.48
354562.67000000004
354589.48
354571.61
354607.32
354598.4
354553.72
354589.48
354571.61
354571.61
⋮
355082.14
354740.58
354517.9
354400.94
354310.42000000004
354264.98
354219.43
354192.04000000004
354164.6, 108-element extrapolate(interpolate((::Vector{Float64},), ::Vector{Float64}, Gridded(Linear())), Flat()) with element type Float64:
230168.87
230224.3
230168.87
230205.81999999998
230131.96
230150.41
230242.79
230168.87
230205.81999999998
230205.81999999998
⋮
229148.40000000002
229856.25
230316.84999999998
230558.51
230745.38999999998
230839.16
230933.15000000002
230989.65000000002
231046.23), GasChromatographySimulator.Substance("C16", "544-76-3", 488.25, 38.46, 142.18, 0.001, "Leppert2020b, alkane, alkanes", 9.329323536538124e-5, 0.0, 0.0), GasChromatographySimulator.Options(OwrenZen5(), 1.0e-6, 0.001, "inlet", true, false, "Blumberg", "Pressure")], Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}(), SciMLBase.StandardODEProblem()), OwrenZen5(), OrdinaryDiffEq.InterpolationData{SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}}(SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}(GasChromatographySimulator.odesystem_r!, LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, SciMLBase.DEFAULT_OBSERVED, nothing), [[0.0, 0.0], [0.5900134570407313, 0.6044411078047436], [1.6799297323075075, 1.7210218398660224], [1.8358817650258428, 1.8808068075219373], [2.701533308765237, 2.6649436767155015], [3.040449203565888, 2.979449258312954], [3.18605794027395, 3.114171494130147], [3.569292659614239, 3.4653286133579204], [3.662765365084855, 3.5502290695252645], [3.7329508029428613, 3.635691226914565] … [26.86890859026053, 0.0019066929065681213], [27.085111222641146, 0.0018435653731137184], [27.89897483325349, 0.001642574729201287], [28.24123699926521, 0.0015740398218032235], [28.76474608764806, 0.001483385665271834], [29.00327608036615, 0.0014485246976928428], [29.79655587307284, 0.001352727178668517], [30.16475555114394, 0.0013181825874918503], [31.848433876083217, 0.0012426999199119247], [32.30360091951563, 0.0012580024380780058]], [0.0, 9.999999999999999e-5, 0.0002847337612905119, 0.00031116658028200776, 0.00045942037783018184, 0.000518207142986941, 0.0005435370416433854, 0.0006104115519867025, 0.000626768278422457, 0.0006390452081170286 … 0.7079808736190161, 0.7506413579667909, 0.9261888422568837, 1.0067917220773095, 1.1371228214504088, 1.1989902413006341, 1.4127439144888068, 1.5140996100544741, 1.9509772279095037, 2.05], [[[0.0, 0.0]], [[5900.246158986355, 6044.83510874486], [5900.208823209298, 6044.6931446374065], [5900.190190299194, 6044.622318607239], [5900.13443088657, 6044.410458206054], [5900.134430886576, 6044.410458206208], [5900.102662327614, 6044.289812562219], [5900.05118417178, 6044.094410916163], [5900.023539911262, 6043.989526715674]], [[5900.023539911262, 6043.989526715674], [5899.955671812488, 6043.732173759099], [5899.921857137462, 6043.604029673149], [5899.910812835936, 6044.477622600836], [5899.910814587102, 6044.477677070552], [5899.918154685183, 6044.595338014832], [5899.9298412435655, 6044.785757011416], [5899.936008760766, 6044.887875625908]], [[5899.936008760766, 6044.887875625908], [5899.937175450827, 6044.907320332474], [5899.9377576005245, 6044.917038550359], [5899.9394992635, 6044.946176484189], [5899.939499263521, 6044.946176484233], [5899.940491277182, 6044.962815510908], [5899.942098300871, 6044.989836521964], [5899.122073358127, 5518.323490586908]], [[5899.122073358127, 5518.323490586908], [5878.825331958072, 5439.741304634808], [5868.783881339114, 5401.433620731879], [5838.770099399922, 5287.326494994811], [5838.773338174216, 5287.396550993464], [5821.763762059283, 5223.3576954871005], [5794.349394340819, 5121.278865596431], [5779.699103216561, 5067.237202976381]], [[5779.699103216561, 5067.237202976381], [5772.537641207178, 5411.122801975275], [5770.621763251085, 5403.446445882468], [5764.871654049966, 5381.865273059957], [5764.884892490656, 5379.030222996303], [5761.592398578495, 5369.329311702418], [5756.276237938786, 5348.097060913284], [5753.414252553578, 5337.488706917605]], [[5753.414252553578, 5337.488706917605], [5751.7720277662365, 5331.212360075392], [5750.951632153723, 5328.080705278332], [5748.491206339984, 5318.691551432568], [5748.491208137694, 5318.691589563835], [5747.086233342781, 5313.3347747136895], [5744.804677734919, 5304.643099209853], [5743.576928963867, 5299.96965739842]], [[5743.576928963867, 5299.96965739842], [5739.257748773795, 5283.539977157217], [5737.103123532531, 5275.370076454101], [5730.644493520866, 5250.900000645241], [5730.6445263424575, 5250.90069426063], [5726.9606482896115, 5236.975097426934], [5720.984916485852, 5214.436610858581], [5717.772587159179, 5202.3460295983]], [[5717.772587159179, 5202.3460295983], [5716.725706610317, 5198.40906399599], [5716.2025594470115, 5196.44320649692], [5714.633429498205, 5190.54798159749], [5714.63342996971, 5190.547991444549], [5713.737186703198, 5187.18269095963], [5712.281416638328, 5181.719375046215], [5711.497860394141, 5178.78029278768]], [[5711.497860394141, 5178.78029278768], [5711.918653698657, 7105.641601056313], [5713.108410600102, 7112.361326053278], [5716.681758170693, 7127.754127577324], [5716.6768599862435, 7137.3106208227855], [5718.7253397717195, 7137.4147533856785], [5722.047810763259, 7156.295531145686], [5723.839871258092, 7163.8224623603255]] … [[5.562726702923472, -0.0017318477199292008], [5.491376113508145, -0.0016770316475531624], [5.457351698640298, -0.0016517749605705428], [5.357367542302385, -0.0015770756395107979], [5.357540240091108, -0.0015776729992370512], [5.30254624739978, -0.0015367472856382455], [5.2158186778414555, -0.0016003112057126805], [5.169787800807257, -0.0015599709946219759]], [[5.169787800807257, -0.0015599709946219759], [5.134722888861454, -0.0015319233167261016], [5.117638393910533, -0.001518517505426772], [5.067004121733963, -0.00147870225371593], [5.067028857360231, -0.0014787934326868802], [5.038733701039425, -0.0014566733660883041], [4.993790415032126, -0.0014219484069470162], [4.970082094243018, -0.0014037581525966937]], [[4.970082094243018, -0.0014037581525966937], [4.84417388208667, -0.0013071916203189113], [4.7873287708412935, -0.001266860345595337], [4.624066257887498, -0.0011482618266777007], [4.62535425619175, -0.001152862459206647], [4.538816846550226, -0.0010883498883868376], [4.412631523816708, -0.0009514767298661703], [4.350409464409863, -0.0009147187790340451]], [[4.350409464409863, -0.0009147187790340451], [4.313792982136471, -0.0008917803169154832], [4.2962075334711205, -0.0008810115382385452], [4.244604673895391, -0.0008491143243348125], [4.244655729461011, -0.0008492606436107458], [4.216250564674543, -0.0008316808535074609], [4.171870897623519, -0.0008045083412829925], [4.148806341825556, -0.0007904044245111766]], [[4.148806341825556, -0.0007904044245111766], [4.100659172232384, -0.0007607634852538664], [4.078096590129626, -0.0007472746350181197], [4.012986260946138, -0.0007074481759681026], [4.013136234712186, -0.0007078685756179803], [3.978211020878967, -0.0006861222941673282], [3.9259708997678673, -0.000605945296336964], [3.900262697229142, -0.0005915819956071183]], [[3.900262697229142, -0.0005915819956071183], [3.8845773555481924, -0.0005818592242650548], [3.876990098226995, -0.000577171185445633], [3.8547924713561668, -0.000563196687320663], [3.854801011204188, -0.000563219786175632], [3.8425873074199903, -0.0005554029078420268], [3.8234890419990317, -0.0005430212639085054], [3.813577036257711, -0.0005364881410074409]], [[3.813577036257711, -0.0005364881410074409], [3.770806534103811, -0.0005069207547443598], [3.752134840331409, -0.0004937605337682136], [3.7027566722711884, -0.00045439160220190266], [3.7030085322600836, -0.00045516368800858735], [3.6799973388305705, -0.00043326538937857166], [3.6525954904133804, -0.00037278904785710315], [3.6423525785088224, -0.00036232188845064213]], [[3.6423525785088224, -0.00036232188845064213], [3.6373445507814055, -0.00035502098199836104], [3.635311177334631, -0.00035149280837753235], [3.630920503937849, -0.0003407766336452609], [3.6309251215534286, -0.00034080969411659284], [3.629634957603638, -0.0003346901860602101], [3.629501755480385, -0.00032482347577920587], [3.6304574402761687, -0.0003194993777233923]], [[3.6304574402761687, -0.0003194993777233923], [3.651137816918319, -0.0002871344849314614], [3.6717236043576604, -0.00023961496952663798], [3.7882790240135695, -0.00019327749546959368], [3.786641612712305, -0.00014096638465755642], [3.8957885982727722, -0.00015102332334069745], [4.155405759164494, -5.2257736559979456e-5], [4.355363767536685, 3.8911641611371e-5]], [[4.355363767536685, 3.8911641611371e-5], [4.426943936699145, 7.255724578512663e-5], [4.464269740025859, 8.982892354077632e-5], [4.586559761105452, 0.00014843171765330622], [4.586419659781843, 0.00014804882654646605], [4.663061145524266, 0.0001858960231330962], [4.798741592943397, 0.0002540062331469067], [4.878182355067024, 0.0002950379127287144]]], true, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}([32.30360091951563, 0.0012580024380780058], [31.848433876083217, 0.0012426999199119247], [4.355363767536685, 3.8911641611371e-5], [4.426943936699145, 7.255724578512663e-5], [4.464269740025859, 8.982892354077632e-5], [4.586559761105452, 0.00014843171765330622], [4.586419659781843, 0.00014804882654646605], [4.663061145524266, 0.0001858960231330962], [4.798741592943397, 0.0002540062331469067], [4.878182355067024, 0.0002950379127287144], [-3.4572604533485082e-6, -3.5870660994504432e-9], [32.24372656970222, 0.0012546204604730043], [-0.00010702068296593417, -0.0015886015174118794], OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}(0.16666666666666666, 0.0625, 0.1875, 0.25, -0.75, -0.75, 3.75, -3.0, 0.5, 0.26895043731778423, -0.7084548104956269, 0.8658892128279884, 0.15462307371928363, 0.06184922948771345, -0.02947695035460993, 0.18500664893617022, 0.4802345261121857, -0.5337849069148937, -0.013090093085106383, 0.7861107753062541, 0.08783068783068783, 0.3006060606060606, 0.22777777777777777, 0.027777777777777776, 0.06218596218596219, 0.2938217338217338, 0.16666666666666666, 0.25, 0.5, 0.5, 0.6428571428571429, 0.875, -0.19894179894179895, 0.9115151515151515, -1.9777777777777779, -0.1111111111111111, 1.67013727013727, -0.2938217338217338, 1.892063492063492, -6.067155067155067, 7.282458282458283, -4.0195360195360195, -7.214545454545455, 20.676923076923078, -20.31142191142191, 7.14965034965035, 7.866666666666666, -18.78205128205128, 13.508547008547009, -2.3653846153846154, 2.0, -5.294871794871795, 4.534188034188034, -1.2115384615384615, -1.4924630924630924, 1.5785667324128863, 1.1958838881915805, -1.219801565955412, -7.051721611721612, 16.273203719357564, -11.978886071193763, 3.0512256973795435, 4.0, -8.384615384615385, 5.769230769230769, -1.3846153846153846))), true, 0, DiffEqBase.DEStats
Number of function 1 evaluations: 2166
Number of function 2 evaluations: 0
Number of W matrix evaluations: 0
Number of linear solves: 0
Number of Jacobians created: 0
Number of nonlinear solver iterations: 0
Number of nonlinear solver convergence failures: 0
Number of rootfind condition calls: 0
Number of accepted steps: 122
Number of rejected steps: 187, :Success), SciMLBase.ODESolution{Float64, 2, Vector{Vector{Float64}}, Nothing, Nothing, Vector{Float64}, Vector{Vector{Vector{Float64}}}, SciMLBase.ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Any}, SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}, SciMLBase.StandardODEProblem}, OwrenZen5, OrdinaryDiffEq.InterpolationData{SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}}, DiffEqBase.DEStats}([[0.0, 0.0], [1.439974561283831, 3.696826941509031], [1.8095327297394028, 4.645702668159687], [1.953281239689376, 4.982536122668541], [2.015591186697629, 5.12609614591478], [2.633405844439473, 6.511751741570175], [2.771617867823323, 6.819408735937619], [2.8338899452224813, 6.964670769963718], [3.4539723832261893, 8.392117370618225], [3.6583271510933995, 8.8550442495111] … [29.227559363638097, 0.0017527416806777793], [29.670328127615758, 0.0016640310887502112], [29.85539214601561, 0.0016334467215069447], [30.681763360956023, 0.0015134358248386143], [31.056696628154246, 0.0014683764213442832], [31.484642860318832, 0.001422447896653658], [32.36143167366755, 0.0013325908707723809], [33.22506607002535, 0.0012985427378991955], [33.7235031729247, 0.001296710446062697], [34.085570255221555, 0.0013090561879427547]], nothing, nothing, [0.0, 9.999999999999999e-5, 0.00012566419713376571, 0.00013566016412466493, 0.00014000405797042685, 0.00018344299642804592, 0.00019325280376908348, 0.00019768088119874455, 0.00024196165549535535, 0.00025662981032033365 … 0.8793326294643662, 0.9779915585328314, 1.0208944947036536, 1.2226475661303964, 1.3185303249941296, 1.4298912412194147, 1.65854564883361, 1.8696940535758024, 1.978427622046068, 2.05], [[[0.0, 0.0]], [[14400.134591724895, 36970.631796015696], [14399.969297304735, 36968.80309562425], [14399.886944466793, 36967.892205527285], [14399.641057167757, 36965.173184939136], [14399.641057167924, 36965.173184950254], [14399.507235698784, 36968.588743320644], [14399.62613245636, 36970.574564587616], [14399.690087570998, 36971.64367073673]], [[14399.690087570998, 36971.64367073673], [14399.71196033859, 36972.00959891657], [14399.722894617373, 36972.19256872837], [14399.755688809593, 36972.74149188032], [14399.755688809599, 36972.741491880195], [14399.774422572824, 36973.0551734773], [14399.804855974118, 36973.56492337485], [14399.821238590666, 36973.839412916415]], [[14399.821238590666, 36973.839412916415], [14398.558399626641, 33569.74536395208], [14394.235475099507, 33530.459369697746], [14381.288462635845, 33400.859239399535], [14381.26186383599, 33424.69477954488], [14373.898747829066, 33329.14255408467], [14361.89861175079, 33220.811285782744], [14355.453046928778, 33156.042842120376]], [[14355.453046928778, 33156.042842120376], [14351.718833931734, 33120.182837333065], [14349.85321624472, 33102.28689958479], [14344.257945903035, 33048.6294914109], [14344.257949311157, 33048.62967339838], [14341.06269471276, 33018.01231594674], [14335.87358206052, 32968.32783942039], [14333.081068226194, 32941.60965862173]], [[14333.081068226194, 32941.60965862173], [14295.907739235363, 32586.540606530856], [14277.468579012093, 32412.359761518128], [14222.304111082334, 31892.647410072517], [14222.307485839281, 31892.827391164756], [14190.98140553577, 31599.91446405697], [14140.38881562276, 31130.689809372714], [14113.301892150077, 30881.25497231276]], [[14113.301892150077, 30881.25497231276], [14105.164762944325, 30806.537332184133], [14101.10338753735, 30769.336147127582], [14088.926879409551, 30657.8725460496], [14088.926915898446, 30657.874414630733], [14081.978736304512, 30594.38304406532], [14071.473985783308, 32887.572367137516], [14068.454130689364, 32857.13485672495]], [[14068.454130689364, 32857.13485672495], [14066.637081348492, 32839.65914992628], [14065.728915930698, 32830.92951349359], [14063.004801172867, 32804.74793480511], [14063.00480158132, 32804.74795659055], [14061.448657884706, 32789.7976978138], [14058.920690465058, 32765.520090486407], [14057.559869504485, 32752.45599707913]], [[14057.559869504485, 32752.45599707913], [14039.430119709754, 32578.55152673777], [14030.401004913607, 32492.41465979966], [14003.35117629378, 32234.711705818496], [14003.351582767204, 32234.733373135037], [13987.94292757307, 32088.498242882855], [13962.97982351859, 31852.508125066022], [13949.57651228517, 31726.24933026981]], [[13949.57651228517, 31726.24933026981], [13943.663946364859, 31670.636030464237], [13940.711498707102, 31642.915258114834], [13931.858216103356, 31559.82910290066], [13931.858230417427, 31559.82985079857], [13926.804458796409, 31512.46244980031], [13918.600250320236, 31435.663526350465], [13914.186768560416, 31394.398017349344]] … [[4.877867814135318, -0.0011951557800282749], [4.8328470749715455, -0.0011642750454056308], [4.811217273780342, -0.001149804436257573], [4.747614501772095, -0.001106939235740592], [4.747682977479444, -0.0011071507594888107], [4.712593917067224, -0.0010835362211068518], [4.657652945697424, -0.0010470968850250066], [4.629028694360466, -0.0010281979130460173]], [[4.629028694360466, -0.0010281979130460173], [4.578598305648004, -0.00099483493980965], [4.554660668516686, -0.0009794513144749568], [4.484812617885386, -0.0009339687907496694], [4.484931673343281, -0.0009343230517439851], [4.446854117262578, -0.0009094038010380324], [4.388680924285762, -0.0007459799276125076], [4.360379092622987, -0.0007354302624918126]], [[4.360379092622987, -0.0007354302624918126], [4.344317320130061, -0.0007276902800674074], [4.336450858303257, -0.0007239271655597379], [4.313143348201148, -0.0007126951510391011], [4.313148713168804, -0.0007127062628417807], [4.300100307343401, -0.0007063976927953221], [4.279326325845038, -0.0006963465456149341], [4.268352145064604, -0.0006910230440062776]], [[4.268352145064604, -0.0006910230440062776], [4.2021221821378765, -0.0006582687814779757], [4.172206492314384, -0.0006438864843112959], [4.088077277798235, -0.0006011932520399031], [4.088532309730499, -0.0006021658471645583], [4.045231437291146, -0.0005787430104724654], [3.983948335647404, -0.0005137002637814905], [3.955478536727595, -0.000498788674032354]], [[3.955478536727595, -0.000498788674032354], [3.9387539436345054, -0.0004887576503034658], [3.930909361559384, -0.0004839714064972028], [3.9087299922173453, -0.00046963733484872423], [3.9087497322102296, -0.00046968673444420356], [3.8971332297394743, -0.0004616557784695328], [3.8799636026973676, -0.00044898213108139585], [3.871575952369296, -0.00044228547021043325]], [[3.871575952369296, -0.00044228547021043325], [3.8597217655053924, -0.0004319807605369923], [3.854438910763593, -0.0004270619679963307], [3.8406150942599018, -0.00041221273087597835], [3.840632248639325, -0.0004122764236012277], [3.8342327492555968, -0.0004038794194708621], [3.826262320008827, -0.0003905265001645634], [3.822724646577718, -0.0004799564062669167]], [[3.822724646577718, -0.0004799564062669167], [3.8143340479446017, -0.0004498565891727982], [3.813161475787129, -0.0004361082332618666], [3.8214022813734854, -0.0003931239366840374], [3.821424269763753, -0.0003940424533023122], [3.8347937163061028, -0.0003685831266632769], [3.871379612833108, -0.0003278141661820814], [3.89940919012507, -0.00030465294461309465]], [[3.89940919012507, -0.00030465294461309465], [3.9452338643701848, -0.00022002417687621493], [3.9717651185526353, -0.00020846572378171524], [4.070078892019265, -0.00015959045316533884], [4.0698131367659744, -0.00017681699418342568], [4.139305606190655, -0.00012899144323308626], [4.275456958483787, -7.672681877951321e-5], [4.362738437213403, -3.778398146012411e-5]], [[4.362738437213403, -3.778398146012411e-5], [4.429439102354703, -9.30100655504272e-6], [4.464155243372052, -7.170474119405873e-5], [4.574969519665004, -2.045646497111247e-5], [4.574923004917644, -6.263097381535338e-5], [4.644467184861529, 6.223357312643528e-6], [4.767889696166799, 4.776548666788087e-5], [4.840252728821089, 7.84273043568616e-5]], [[4.840252728821089, 7.84273043568616e-5], [4.907694802703192, 0.00010679148000589849], [4.942291013411024, 0.00012117811191145146], [5.052703827515254, 0.00016883207225440369], [5.05261379257066, 0.00016858571642542827], [5.119818243403933, 0.00019847508781670273], [5.235569781945134, 0.00025082015694194394], [5.3015624108315516, 0.00028142705044985296]]], SciMLBase.ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Any}, SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}, SciMLBase.StandardODEProblem}(SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}(GasChromatographySimulator.odesystem_r!, LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, SciMLBase.DEFAULT_OBSERVED, nothing), [0.0, 0.0], (0.0, 2.05), Any[GasChromatographySimulator.Column(2.05, 0.000104, [0.000104], 1.04e-7, [1.04e-7], "FS5ms", "He"), GasChromatographySimulator.Program{GasChromatographySimulator.var"#gf#2"{String, Matrix{Float64}}}([0.0, 0.9200000000000003, 0.9100000000000007, 0.9199999999999986, 0.9199999999999995, 0.910000000000001, 0.9199999999999999, 0.9199999999999982, 0.9200000000000008, 0.9300000000000006 … 0.9199999999999875, 0.9100000000000108, 0.9200000000000017, 0.9099999999999966, 0.9200000000000017, 0.9099999999999966, 0.9200000000000017, 0.9099999999999966, 0.9099999999999966, 0.9200000000000017], [49.323, 48.954, 49.323, 49.077, 49.569, 49.446, 48.831, 49.323, 49.077, 49.077 … 63.099, 56.211, 51.414, 48.339, 46.74, 45.51, 44.895, 44.28, 43.911, 43.542], [354589.48, 354562.67000000004, 354589.48, 354571.61, 354607.32, 354598.4, 354553.72, 354589.48, 354571.61, 354571.61 … 355560.34, 355082.14, 354740.58, 354517.9, 354400.94, 354310.42000000004, 354264.98, 354219.43, 354192.04000000004, 354164.6], [230168.87, 230224.3, 230168.87, 230205.81999999998, 230131.96, 230150.41, 230242.79, 230168.87, 230205.81999999998, 230205.81999999998 … 228154.50999999998, 229148.40000000002, 229856.25, 230316.84999999998, 230558.51, 230745.38999999998, 230839.16, 230933.15000000002, 230989.65000000002, 231046.23], GasChromatographySimulator.var"#gf#2"{String, Matrix{Float64}}("outlet", [-2.829 0.0 2.05 -3.0; -2.46 0.0 2.05 -3.0; … ; -1.23 0.0 2.05 -3.0; -0.984 0.0 2.05 -3.0]), [-2.829 0.0 2.05 -3.0; -2.46 0.0 2.05 -3.0; … ; -1.23 0.0 2.05 -3.0; -0.984 0.0 2.05 -3.0], 2051×108 extrapolate(interpolate((0.0:0.001:2.05,::Vector{Float64}), ::Matrix{Float64}, Gridded(Linear())), Flat()) with element type Float64:
319.644 319.644 319.644 319.89 … 316.077 315.954 315.831 315.708
319.644 319.644 319.644 319.89 316.077 315.954 315.831 315.708
319.645 319.644 319.645 319.89 316.077 315.954 315.831 315.708
319.645 319.645 319.645 319.891 316.078 315.954 315.831 315.708
319.645 319.645 319.645 319.891 316.078 315.955 315.831 315.708
319.645 319.645 319.645 319.891 … 316.078 315.955 315.832 315.708
319.646 319.645 319.646 319.891 316.078 315.955 315.832 315.709
319.646 319.646 319.646 319.892 316.078 315.955 315.832 315.709
319.646 319.646 319.646 319.892 316.079 315.955 315.832 315.709
319.646 319.646 319.646 319.892 316.079 315.955 315.832 315.709
⋮ ⋱ ⋮
322.44 322.075 322.44 322.199 318.022 317.413 317.046 316.68
322.444 322.079 322.444 322.203 318.025 317.415 317.048 316.682
322.448 322.082 322.448 322.206 318.028 317.417 317.05 316.683
322.452 322.086 322.452 322.21 … 318.03 317.419 317.052 316.685
322.456 322.089 322.456 322.213 318.033 317.421 317.054 316.686
322.46 322.093 322.46 322.217 318.036 317.423 317.056 316.688
322.465 322.097 322.465 322.22 318.039 317.426 317.057 316.689
322.469 322.1 322.469 322.224 318.042 317.428 317.059 316.691
322.473 322.104 322.473 322.227 … 318.045 317.43 317.061 316.692, 108-element extrapolate(interpolate((::Vector{Float64},), ::Vector{Float64}, Gridded(Linear())), Flat()) with element type Float64:
354589.48
354562.67000000004
354589.48
354571.61
354607.32
354598.4
354553.72
354589.48
354571.61
354571.61
⋮
355082.14
354740.58
354517.9
354400.94
354310.42000000004
354264.98
354219.43
354192.04000000004
354164.6, 108-element extrapolate(interpolate((::Vector{Float64},), ::Vector{Float64}, Gridded(Linear())), Flat()) with element type Float64:
230168.87
230224.3
230168.87
230205.81999999998
230131.96
230150.41
230242.79
230168.87
230205.81999999998
230205.81999999998
⋮
229148.40000000002
229856.25
230316.84999999998
230558.51
230745.38999999998
230839.16
230933.15000000002
230989.65000000002
231046.23), GasChromatographySimulator.Substance("C17", "629-78-7", 501.05999999999995, 38.95, 145.36, 0.001, "Leppert2020b, alkane, alkanes", 9.036687565381776e-5, 0.0, 0.0), GasChromatographySimulator.Options(OwrenZen5(), 1.0e-6, 0.001, "inlet", true, false, "Blumberg", "Pressure")], Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}(), SciMLBase.StandardODEProblem()), OwrenZen5(), OrdinaryDiffEq.InterpolationData{SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}}(SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}(GasChromatographySimulator.odesystem_r!, LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, SciMLBase.DEFAULT_OBSERVED, nothing), [[0.0, 0.0], [1.439974561283831, 3.696826941509031], [1.8095327297394028, 4.645702668159687], [1.953281239689376, 4.982536122668541], [2.015591186697629, 5.12609614591478], [2.633405844439473, 6.511751741570175], [2.771617867823323, 6.819408735937619], [2.8338899452224813, 6.964670769963718], [3.4539723832261893, 8.392117370618225], [3.6583271510933995, 8.8550442495111] … [29.227559363638097, 0.0017527416806777793], [29.670328127615758, 0.0016640310887502112], [29.85539214601561, 0.0016334467215069447], [30.681763360956023, 0.0015134358248386143], [31.056696628154246, 0.0014683764213442832], [31.484642860318832, 0.001422447896653658], [32.36143167366755, 0.0013325908707723809], [33.22506607002535, 0.0012985427378991955], [33.7235031729247, 0.001296710446062697], [34.085570255221555, 0.0013090561879427547]], [0.0, 9.999999999999999e-5, 0.00012566419713376571, 0.00013566016412466493, 0.00014000405797042685, 0.00018344299642804592, 0.00019325280376908348, 0.00019768088119874455, 0.00024196165549535535, 0.00025662981032033365 … 0.8793326294643662, 0.9779915585328314, 1.0208944947036536, 1.2226475661303964, 1.3185303249941296, 1.4298912412194147, 1.65854564883361, 1.8696940535758024, 1.978427622046068, 2.05], [[[0.0, 0.0]], [[14400.134591724895, 36970.631796015696], [14399.969297304735, 36968.80309562425], [14399.886944466793, 36967.892205527285], [14399.641057167757, 36965.173184939136], [14399.641057167924, 36965.173184950254], [14399.507235698784, 36968.588743320644], [14399.62613245636, 36970.574564587616], [14399.690087570998, 36971.64367073673]], [[14399.690087570998, 36971.64367073673], [14399.71196033859, 36972.00959891657], [14399.722894617373, 36972.19256872837], [14399.755688809593, 36972.74149188032], [14399.755688809599, 36972.741491880195], [14399.774422572824, 36973.0551734773], [14399.804855974118, 36973.56492337485], [14399.821238590666, 36973.839412916415]], [[14399.821238590666, 36973.839412916415], [14398.558399626641, 33569.74536395208], [14394.235475099507, 33530.459369697746], [14381.288462635845, 33400.859239399535], [14381.26186383599, 33424.69477954488], [14373.898747829066, 33329.14255408467], [14361.89861175079, 33220.811285782744], [14355.453046928778, 33156.042842120376]], [[14355.453046928778, 33156.042842120376], [14351.718833931734, 33120.182837333065], [14349.85321624472, 33102.28689958479], [14344.257945903035, 33048.6294914109], [14344.257949311157, 33048.62967339838], [14341.06269471276, 33018.01231594674], [14335.87358206052, 32968.32783942039], [14333.081068226194, 32941.60965862173]], [[14333.081068226194, 32941.60965862173], [14295.907739235363, 32586.540606530856], [14277.468579012093, 32412.359761518128], [14222.304111082334, 31892.647410072517], [14222.307485839281, 31892.827391164756], [14190.98140553577, 31599.91446405697], [14140.38881562276, 31130.689809372714], [14113.301892150077, 30881.25497231276]], [[14113.301892150077, 30881.25497231276], [14105.164762944325, 30806.537332184133], [14101.10338753735, 30769.336147127582], [14088.926879409551, 30657.8725460496], [14088.926915898446, 30657.874414630733], [14081.978736304512, 30594.38304406532], [14071.473985783308, 32887.572367137516], [14068.454130689364, 32857.13485672495]], [[14068.454130689364, 32857.13485672495], [14066.637081348492, 32839.65914992628], [14065.728915930698, 32830.92951349359], [14063.004801172867, 32804.74793480511], [14063.00480158132, 32804.74795659055], [14061.448657884706, 32789.7976978138], [14058.920690465058, 32765.520090486407], [14057.559869504485, 32752.45599707913]], [[14057.559869504485, 32752.45599707913], [14039.430119709754, 32578.55152673777], [14030.401004913607, 32492.41465979966], [14003.35117629378, 32234.711705818496], [14003.351582767204, 32234.733373135037], [13987.94292757307, 32088.498242882855], [13962.97982351859, 31852.508125066022], [13949.57651228517, 31726.24933026981]], [[13949.57651228517, 31726.24933026981], [13943.663946364859, 31670.636030464237], [13940.711498707102, 31642.915258114834], [13931.858216103356, 31559.82910290066], [13931.858230417427, 31559.82985079857], [13926.804458796409, 31512.46244980031], [13918.600250320236, 31435.663526350465], [13914.186768560416, 31394.398017349344]] … [[4.877867814135318, -0.0011951557800282749], [4.8328470749715455, -0.0011642750454056308], [4.811217273780342, -0.001149804436257573], [4.747614501772095, -0.001106939235740592], [4.747682977479444, -0.0011071507594888107], [4.712593917067224, -0.0010835362211068518], [4.657652945697424, -0.0010470968850250066], [4.629028694360466, -0.0010281979130460173]], [[4.629028694360466, -0.0010281979130460173], [4.578598305648004, -0.00099483493980965], [4.554660668516686, -0.0009794513144749568], [4.484812617885386, -0.0009339687907496694], [4.484931673343281, -0.0009343230517439851], [4.446854117262578, -0.0009094038010380324], [4.388680924285762, -0.0007459799276125076], [4.360379092622987, -0.0007354302624918126]], [[4.360379092622987, -0.0007354302624918126], [4.344317320130061, -0.0007276902800674074], [4.336450858303257, -0.0007239271655597379], [4.313143348201148, -0.0007126951510391011], [4.313148713168804, -0.0007127062628417807], [4.300100307343401, -0.0007063976927953221], [4.279326325845038, -0.0006963465456149341], [4.268352145064604, -0.0006910230440062776]], [[4.268352145064604, -0.0006910230440062776], [4.2021221821378765, -0.0006582687814779757], [4.172206492314384, -0.0006438864843112959], [4.088077277798235, -0.0006011932520399031], [4.088532309730499, -0.0006021658471645583], [4.045231437291146, -0.0005787430104724654], [3.983948335647404, -0.0005137002637814905], [3.955478536727595, -0.000498788674032354]], [[3.955478536727595, -0.000498788674032354], [3.9387539436345054, -0.0004887576503034658], [3.930909361559384, -0.0004839714064972028], [3.9087299922173453, -0.00046963733484872423], [3.9087497322102296, -0.00046968673444420356], [3.8971332297394743, -0.0004616557784695328], [3.8799636026973676, -0.00044898213108139585], [3.871575952369296, -0.00044228547021043325]], [[3.871575952369296, -0.00044228547021043325], [3.8597217655053924, -0.0004319807605369923], [3.854438910763593, -0.0004270619679963307], [3.8406150942599018, -0.00041221273087597835], [3.840632248639325, -0.0004122764236012277], [3.8342327492555968, -0.0004038794194708621], [3.826262320008827, -0.0003905265001645634], [3.822724646577718, -0.0004799564062669167]], [[3.822724646577718, -0.0004799564062669167], [3.8143340479446017, -0.0004498565891727982], [3.813161475787129, -0.0004361082332618666], [3.8214022813734854, -0.0003931239366840374], [3.821424269763753, -0.0003940424533023122], [3.8347937163061028, -0.0003685831266632769], [3.871379612833108, -0.0003278141661820814], [3.89940919012507, -0.00030465294461309465]], [[3.89940919012507, -0.00030465294461309465], [3.9452338643701848, -0.00022002417687621493], [3.9717651185526353, -0.00020846572378171524], [4.070078892019265, -0.00015959045316533884], [4.0698131367659744, -0.00017681699418342568], [4.139305606190655, -0.00012899144323308626], [4.275456958483787, -7.672681877951321e-5], [4.362738437213403, -3.778398146012411e-5]], [[4.362738437213403, -3.778398146012411e-5], [4.429439102354703, -9.30100655504272e-6], [4.464155243372052, -7.170474119405873e-5], [4.574969519665004, -2.045646497111247e-5], [4.574923004917644, -6.263097381535338e-5], [4.644467184861529, 6.223357312643528e-6], [4.767889696166799, 4.776548666788087e-5], [4.840252728821089, 7.84273043568616e-5]], [[4.840252728821089, 7.84273043568616e-5], [4.907694802703192, 0.00010679148000589849], [4.942291013411024, 0.00012117811191145146], [5.052703827515254, 0.00016883207225440369], [5.05261379257066, 0.00016858571642542827], [5.119818243403933, 0.00019847508781670273], [5.235569781945134, 0.00025082015694194394], [5.3015624108315516, 0.00028142705044985296]]], true, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}([34.085570255221555, 0.0013090561879427547], [33.7235031729247, 0.001296710446062697], [4.840252728821089, 7.84273043568616e-5], [4.907694802703192, 0.00010679148000589849], [4.942291013411024, 0.00012117811191145146], [5.052703827515254, 0.00016883207225440369], [5.05261379257066, 0.00016858571642542827], [5.119818243403933, 0.00019847508781670273], [5.235569781945134, 0.00025082015694194394], [5.3015624108315516, 0.00028142705044985296], [-5.188841157744802e-7, -4.740209766590169e-10], [34.03844218610059, 0.0013066830434450918], [-1.5222538140075706e-5, -0.00020528776178519248], OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}(0.16666666666666666, 0.0625, 0.1875, 0.25, -0.75, -0.75, 3.75, -3.0, 0.5, 0.26895043731778423, -0.7084548104956269, 0.8658892128279884, 0.15462307371928363, 0.06184922948771345, -0.02947695035460993, 0.18500664893617022, 0.4802345261121857, -0.5337849069148937, -0.013090093085106383, 0.7861107753062541, 0.08783068783068783, 0.3006060606060606, 0.22777777777777777, 0.027777777777777776, 0.06218596218596219, 0.2938217338217338, 0.16666666666666666, 0.25, 0.5, 0.5, 0.6428571428571429, 0.875, -0.19894179894179895, 0.9115151515151515, -1.9777777777777779, -0.1111111111111111, 1.67013727013727, -0.2938217338217338, 1.892063492063492, -6.067155067155067, 7.282458282458283, -4.0195360195360195, -7.214545454545455, 20.676923076923078, -20.31142191142191, 7.14965034965035, 7.866666666666666, -18.78205128205128, 13.508547008547009, -2.3653846153846154, 2.0, -5.294871794871795, 4.534188034188034, -1.2115384615384615, -1.4924630924630924, 1.5785667324128863, 1.1958838881915805, -1.219801565955412, -7.051721611721612, 16.273203719357564, -11.978886071193763, 3.0512256973795435, 4.0, -8.384615384615385, 5.769230769230769, -1.3846153846153846))), true, 0, DiffEqBase.DEStats
Number of function 1 evaluations: 2068
Number of function 2 evaluations: 0
Number of W matrix evaluations: 0
Number of linear solves: 0
Number of Jacobians created: 0
Number of nonlinear solver iterations: 0
Number of nonlinear solver convergence failures: 0
Number of rootfind condition calls: 0
Number of accepted steps: 125
Number of rejected steps: 170, :Success), SciMLBase.ODESolution{Float64, 2, Vector{Vector{Float64}}, Nothing, Nothing, Vector{Float64}, Vector{Vector{Vector{Float64}}}, SciMLBase.ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Any}, SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}, SciMLBase.StandardODEProblem}, OwrenZen5, OrdinaryDiffEq.InterpolationData{SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}}, DiffEqBase.DEStats}([[0.0, 0.0], [1.6096918554474635, 10.69433868375358], [1.8552994017732556, 12.326315949735875], [2.691083169685695, 17.15432399477721], [2.9608618568692213, 18.760447804044166], [3.078285996416845, 19.458605083901418], [3.626819958175531, 22.67533659249251], [3.6740312415178686, 22.94878517174853], [4.150636852383621, 26.98386082895183], [4.531545459276447, 30.368885674692578] … [32.010387386858135, 0.001607878022691393], [32.498601744931705, 0.0015301212746257466], [32.707267834939806, 0.0015037788274219427], [33.586055522294345, 0.0014116560868912317], [34.0424187753323, 0.0013756437041729998], [34.34756128882119, 0.001358968618740684], [34.49509894689375, 0.001354743343010887], [35.33445936559971, 0.0013568224219907602], [35.7627944380974, 0.0013798692620059898], [35.79447656599536, 0.001382400541923391]], nothing, nothing, [0.0, 4.4300906526651555e-5, 5.1060290586073774e-5, 7.433520598509129e-5, 8.19508221592053e-5, 8.527432937442537e-5, 0.0001008682584760211, 0.00010221569020832543, 0.00011569000753136865, 0.00012627451676191698 … 1.1722384148638152, 1.2917842755861693, 1.3439132308827666, 1.5652447682503083, 1.6779098297244954, 1.750866062433542, 1.7851840385005822, 1.9647386750796423, 2.044445910673621, 2.05], [[[0.0, 0.0]], [[36336.209973646, 241414.75951775556], [36335.81137608755, 241402.28081559142], [36335.61270647048, 241396.06165605123], [36335.01919760808, 241377.48353037995], [36335.01919760856, 241377.48353047136], [36334.98229283429, 241409.07197894232], [36335.41337865791, 241424.95211828893], [36335.645925698125, 241433.51783595598]], [[36335.645925698125, 241433.51783595598], [36335.69327171888, 241435.2624650112], [36335.71694942188, 241436.13498417963], [36335.78800098272, 241438.75333013834], [36335.788000982735, 241438.7533301382], [36335.82861436966, 241440.2500654565], [36335.89463050082, 241442.68309409436], [36311.43522742188, 217249.82483813993]], [[36311.43522742188, 217249.82483813993], [36175.545404883786, 213876.01024766217], [36108.37684903105, 212234.9692259849], [35907.66317969683, 207349.30772697122], [35907.688887592565, 207352.87693475073], [35794.012677400686, 204614.80983649002], [35610.92476989252, 200257.8627854334], [35513.14075922113, 197954.44573254522]], [[35513.14075922113, 197954.44573254522], [35470.63054651285, 196957.4030068794], [35453.53805100066, 213097.35775601282], [35421.91564102142, 212226.48317578656], [35421.910282653145, 212639.60229495473], [35403.867363020174, 211787.76312237492], [35374.59320778468, 211136.6732116985], [35358.83891919963, 210740.66156895185]], [[35358.83891919963, 210740.66156895185], [35349.68169779357, 210515.4340915748], [35345.106715579495, 210403.0327073125], [35331.38560646775, 210066.0169693294], [35331.38561475394, 210066.01810028762], [35323.54995064983, 209873.7115874404], [35310.82472342276, 209561.64117895206], [35303.97662838095, 209393.82105493598]], [[35303.97662838095, 209393.82105493598], [35261.171603377355, 208345.7923646763], [35239.84844063195, 207826.39955404305], [35175.9620394995, 206272.23013560526], [35175.96288869962, 206272.3457258323], [35139.563752479095, 205390.05926945657], [35080.58360159582, 203965.6449962501], [35048.91020128368, 203203.2666762068]], [[35048.91020128368, 203203.2666762068], [35045.264748867325, 203115.62941774886], [35043.442602857715, 203071.844019873], [35037.976779465585, 202940.51745165954], [35037.97677999752, 202940.51752270208], [35034.85424855821, 202865.51682481874], [35029.781371176716, 202743.70765145213], [35034.592590646214, 288652.8111641819]], [[35034.592590646214, 288652.8111641819], [35145.573979335524, 292164.40137988183], [35201.6041418563, 293960.07800292043], [35370.285486732006, 299384.72089826857], [35370.27046444522, 299382.1518504965], [35467.43064039054, 302537.7883931777], [35626.47912454079, 307746.06777563493], [35712.739480046126, 310595.2711959566]], [[35712.739480046126, 310595.2711959566], [35803.437934918766, 313603.7479667718], [35849.14044285606, 315135.3060116372], [35986.63238886162, 319755.3389959336], [35986.624496069926, 319753.9250528551], [36065.692231560504, 322431.5840837412], [36194.93714649997, 326837.70883749635], [36264.931936136956, 329240.34146760637]] … [[4.224248263113727, -0.0007992708978846871], [4.213173464265408, -0.0007903435791408609], [4.207760148460254, -0.0007859953573283508], [4.191790784859682, -0.0007730211810442285], [4.191793787503557, -0.0007730318774058099], [4.182896678176354, -0.0007657408214699179], [4.1687994321361, -0.0007541107418540531], [4.161389075583238, -0.000747945981029802]], [[4.161389075583238, -0.000747945981029802], [4.132164641274653, -0.0007230564700542201], [4.118628903862685, -0.0007115383978118413], [4.080494773914483, -0.0006773334565731873], [4.080566157323515, -0.0006776004086127636], [4.060767385840448, -0.0006587360920966854], [4.033085647267117, -0.0005335929996712269], [4.020952785342844, -0.0005246008625839661]], [[4.020952785342844, -0.0005246008625839661], [4.014372906608827, -0.0005180374841270189], [4.011243093154608, -0.0005148358892058484], [4.002340587912277, -0.0005052306182137265], [4.002342980909355, -0.0005052406521025021], [3.9976182699149447, -0.0004998112869713683], [3.990512922109079, -0.0004911055551390822], [3.9869790793358666, -0.0004864641209751082]], [[3.9869790793358666, -0.0004864641209751082], [3.970704237026658, -0.00046017858023514454], [3.9653904093244416, -0.00044819607321442746], [3.9594194027563887, -0.00041106677816626653], [3.959504808246098, -0.0004118159239348302], [3.963479620431516, -0.000390131537015936], [3.9817756318927575, -0.00037244260093863583], [3.998025833803319, -0.00035527098058666805]], [[3.998025833803319, -0.00035527098058666805], [4.011916600250683, -0.00034374563410423625], [4.019632469097206, -0.00033808888993821433], [4.046708784064827, -0.000320220159941836], [4.046680027033316, -0.0003203124181017996], [4.064783434991235, -0.00030963700799276224], [4.098448708587169, -0.0002917215928818428], [4.118905756540519, -0.0002816141323073241]], [[4.118905756540519, -0.0002816141323073241], [4.138014779239236, -0.0002725259663761833], [4.147956254982362, -0.00026798824917970013], [4.180049547327959, -0.0002536537494468422], [4.180032978674946, -0.00025369029872478405], [4.199818110193509, -0.00024511312422637564], [4.235462084444504, -0.0001470394043868704], [4.256462259212833, -0.00013993581870470504]], [[4.256462259212833, -0.00013993581870470504], [4.270137212387004, -0.00013450381373088412], [4.277078858651919, -0.000131776365294476], [4.298548851525816, -0.00012332579745176746], [4.298546413016147, -0.00012333103451118402], [4.311211730249501, -0.00011836033499937554], [4.332414993754451, -0.00011006957279566828], [4.344160922537187, -0.00010548554790943028]], [[4.344160922537187, -0.00010548554790943028], [4.433673850906804, -7.010804254594175e-5], [4.481855728263074, -5.186607539625133e-5], [4.650256310466432, 1.5015837321780872e-5], [4.6496299320334415, 1.360831353809937e-5], [4.762448084057376, 6.067766113206346e-5], [4.9734824412997405, 9.823518221564265e-5], [5.102250935013903, 0.00015889831027734351]], [[5.102250935013903, 0.00015889831027734351], [5.185178854989783, 0.00019764226225158854], [5.227860065332525, 0.00021730923848948614], [5.365243905106134, 0.0002833569260522785], [5.3650948075630085, 0.0002829008552987771], [5.449455297509074, 0.00032489677265455045], [5.59591118607788, 0.0003990794938263228], [5.680083395141832, 0.0004429641856812964]], [[5.680083395141832, 0.0004429641856812964], [5.6881035972401, 0.00044719236034241683], [5.692120554984645, 0.0004493078384644319], [5.704236654088512, 0.000455711183155801], [5.704236559827891, 0.00045571087932650854], [5.711192983193512, 0.00045939558717738443], [5.722556732747536, 0.00046542740201684], [5.728699994180409, 0.0004686946224058213]]], SciMLBase.ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Any}, SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}, SciMLBase.StandardODEProblem}(SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}(GasChromatographySimulator.odesystem_r!, LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, SciMLBase.DEFAULT_OBSERVED, nothing), [0.0, 0.0], (0.0, 2.05), Any[GasChromatographySimulator.Column(2.05, 0.000104, [0.000104], 1.04e-7, [1.04e-7], "FS5ms", "He"), GasChromatographySimulator.Program{GasChromatographySimulator.var"#gf#2"{String, Matrix{Float64}}}([0.0, 0.9200000000000003, 0.9100000000000007, 0.9199999999999986, 0.9199999999999995, 0.910000000000001, 0.9199999999999999, 0.9199999999999982, 0.9200000000000008, 0.9300000000000006 … 0.9199999999999875, 0.9100000000000108, 0.9200000000000017, 0.9099999999999966, 0.9200000000000017, 0.9099999999999966, 0.9200000000000017, 0.9099999999999966, 0.9099999999999966, 0.9200000000000017], [49.323, 48.954, 49.323, 49.077, 49.569, 49.446, 48.831, 49.323, 49.077, 49.077 … 63.099, 56.211, 51.414, 48.339, 46.74, 45.51, 44.895, 44.28, 43.911, 43.542], [354589.48, 354562.67000000004, 354589.48, 354571.61, 354607.32, 354598.4, 354553.72, 354589.48, 354571.61, 354571.61 … 355560.34, 355082.14, 354740.58, 354517.9, 354400.94, 354310.42000000004, 354264.98, 354219.43, 354192.04000000004, 354164.6], [230168.87, 230224.3, 230168.87, 230205.81999999998, 230131.96, 230150.41, 230242.79, 230168.87, 230205.81999999998, 230205.81999999998 … 228154.50999999998, 229148.40000000002, 229856.25, 230316.84999999998, 230558.51, 230745.38999999998, 230839.16, 230933.15000000002, 230989.65000000002, 231046.23], GasChromatographySimulator.var"#gf#2"{String, Matrix{Float64}}("outlet", [-2.829 0.0 2.05 -3.0; -2.46 0.0 2.05 -3.0; … ; -1.23 0.0 2.05 -3.0; -0.984 0.0 2.05 -3.0]), [-2.829 0.0 2.05 -3.0; -2.46 0.0 2.05 -3.0; … ; -1.23 0.0 2.05 -3.0; -0.984 0.0 2.05 -3.0], 2051×108 extrapolate(interpolate((0.0:0.001:2.05,::Vector{Float64}), ::Matrix{Float64}, Gridded(Linear())), Flat()) with element type Float64:
319.644 319.644 319.644 319.89 … 316.077 315.954 315.831 315.708
319.644 319.644 319.644 319.89 316.077 315.954 315.831 315.708
319.645 319.644 319.645 319.89 316.077 315.954 315.831 315.708
319.645 319.645 319.645 319.891 316.078 315.954 315.831 315.708
319.645 319.645 319.645 319.891 316.078 315.955 315.831 315.708
319.645 319.645 319.645 319.891 … 316.078 315.955 315.832 315.708
319.646 319.645 319.646 319.891 316.078 315.955 315.832 315.709
319.646 319.646 319.646 319.892 316.078 315.955 315.832 315.709
319.646 319.646 319.646 319.892 316.079 315.955 315.832 315.709
319.646 319.646 319.646 319.892 316.079 315.955 315.832 315.709
⋮ ⋱ ⋮
322.44 322.075 322.44 322.199 318.022 317.413 317.046 316.68
322.444 322.079 322.444 322.203 318.025 317.415 317.048 316.682
322.448 322.082 322.448 322.206 318.028 317.417 317.05 316.683
322.452 322.086 322.452 322.21 … 318.03 317.419 317.052 316.685
322.456 322.089 322.456 322.213 318.033 317.421 317.054 316.686
322.46 322.093 322.46 322.217 318.036 317.423 317.056 316.688
322.465 322.097 322.465 322.22 318.039 317.426 317.057 316.689
322.469 322.1 322.469 322.224 318.042 317.428 317.059 316.691
322.473 322.104 322.473 322.227 … 318.045 317.43 317.061 316.692, 108-element extrapolate(interpolate((::Vector{Float64},), ::Vector{Float64}, Gridded(Linear())), Flat()) with element type Float64:
354589.48
354562.67000000004
354589.48
354571.61
354607.32
354598.4
354553.72
354589.48
354571.61
354571.61
⋮
355082.14
354740.58
354517.9
354400.94
354310.42000000004
354264.98
354219.43
354192.04000000004
354164.6, 108-element extrapolate(interpolate((::Vector{Float64},), ::Vector{Float64}, Gridded(Linear())), Flat()) with element type Float64:
230168.87
230224.3
230168.87
230205.81999999998
230131.96
230150.41
230242.79
230168.87
230205.81999999998
230205.81999999998
⋮
229148.40000000002
229856.25
230316.84999999998
230558.51
230745.38999999998
230839.16
230933.15000000002
230989.65000000002
231046.23), GasChromatographySimulator.Substance("C18", "593-45-3", 513.25, 39.58, 153.29, 0.001, "Leppert2020b, alkane, alkanes", 8.768068754143736e-5, 0.0, 0.0), GasChromatographySimulator.Options(OwrenZen5(), 1.0e-6, 0.001, "inlet", true, false, "Blumberg", "Pressure")], Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}(), SciMLBase.StandardODEProblem()), OwrenZen5(), OrdinaryDiffEq.InterpolationData{SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}}(SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}(GasChromatographySimulator.odesystem_r!, LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, SciMLBase.DEFAULT_OBSERVED, nothing), [[0.0, 0.0], [1.6096918554474635, 10.69433868375358], [1.8552994017732556, 12.326315949735875], [2.691083169685695, 17.15432399477721], [2.9608618568692213, 18.760447804044166], [3.078285996416845, 19.458605083901418], [3.626819958175531, 22.67533659249251], [3.6740312415178686, 22.94878517174853], [4.150636852383621, 26.98386082895183], [4.531545459276447, 30.368885674692578] … [32.010387386858135, 0.001607878022691393], [32.498601744931705, 0.0015301212746257466], [32.707267834939806, 0.0015037788274219427], [33.586055522294345, 0.0014116560868912317], [34.0424187753323, 0.0013756437041729998], [34.34756128882119, 0.001358968618740684], [34.49509894689375, 0.001354743343010887], [35.33445936559971, 0.0013568224219907602], [35.7627944380974, 0.0013798692620059898], [35.79447656599536, 0.001382400541923391]], [0.0, 4.4300906526651555e-5, 5.1060290586073774e-5, 7.433520598509129e-5, 8.19508221592053e-5, 8.527432937442537e-5, 0.0001008682584760211, 0.00010221569020832543, 0.00011569000753136865, 0.00012627451676191698 … 1.1722384148638152, 1.2917842755861693, 1.3439132308827666, 1.5652447682503083, 1.6779098297244954, 1.750866062433542, 1.7851840385005822, 1.9647386750796423, 2.044445910673621, 2.05], [[[0.0, 0.0]], [[36336.209973646, 241414.75951775556], [36335.81137608755, 241402.28081559142], [36335.61270647048, 241396.06165605123], [36335.01919760808, 241377.48353037995], [36335.01919760856, 241377.48353047136], [36334.98229283429, 241409.07197894232], [36335.41337865791, 241424.95211828893], [36335.645925698125, 241433.51783595598]], [[36335.645925698125, 241433.51783595598], [36335.69327171888, 241435.2624650112], [36335.71694942188, 241436.13498417963], [36335.78800098272, 241438.75333013834], [36335.788000982735, 241438.7533301382], [36335.82861436966, 241440.2500654565], [36335.89463050082, 241442.68309409436], [36311.43522742188, 217249.82483813993]], [[36311.43522742188, 217249.82483813993], [36175.545404883786, 213876.01024766217], [36108.37684903105, 212234.9692259849], [35907.66317969683, 207349.30772697122], [35907.688887592565, 207352.87693475073], [35794.012677400686, 204614.80983649002], [35610.92476989252, 200257.8627854334], [35513.14075922113, 197954.44573254522]], [[35513.14075922113, 197954.44573254522], [35470.63054651285, 196957.4030068794], [35453.53805100066, 213097.35775601282], [35421.91564102142, 212226.48317578656], [35421.910282653145, 212639.60229495473], [35403.867363020174, 211787.76312237492], [35374.59320778468, 211136.6732116985], [35358.83891919963, 210740.66156895185]], [[35358.83891919963, 210740.66156895185], [35349.68169779357, 210515.4340915748], [35345.106715579495, 210403.0327073125], [35331.38560646775, 210066.0169693294], [35331.38561475394, 210066.01810028762], [35323.54995064983, 209873.7115874404], [35310.82472342276, 209561.64117895206], [35303.97662838095, 209393.82105493598]], [[35303.97662838095, 209393.82105493598], [35261.171603377355, 208345.7923646763], [35239.84844063195, 207826.39955404305], [35175.9620394995, 206272.23013560526], [35175.96288869962, 206272.3457258323], [35139.563752479095, 205390.05926945657], [35080.58360159582, 203965.6449962501], [35048.91020128368, 203203.2666762068]], [[35048.91020128368, 203203.2666762068], [35045.264748867325, 203115.62941774886], [35043.442602857715, 203071.844019873], [35037.976779465585, 202940.51745165954], [35037.97677999752, 202940.51752270208], [35034.85424855821, 202865.51682481874], [35029.781371176716, 202743.70765145213], [35034.592590646214, 288652.8111641819]], [[35034.592590646214, 288652.8111641819], [35145.573979335524, 292164.40137988183], [35201.6041418563, 293960.07800292043], [35370.285486732006, 299384.72089826857], [35370.27046444522, 299382.1518504965], [35467.43064039054, 302537.7883931777], [35626.47912454079, 307746.06777563493], [35712.739480046126, 310595.2711959566]], [[35712.739480046126, 310595.2711959566], [35803.437934918766, 313603.7479667718], [35849.14044285606, 315135.3060116372], [35986.63238886162, 319755.3389959336], [35986.624496069926, 319753.9250528551], [36065.692231560504, 322431.5840837412], [36194.93714649997, 326837.70883749635], [36264.931936136956, 329240.34146760637]] … [[4.224248263113727, -0.0007992708978846871], [4.213173464265408, -0.0007903435791408609], [4.207760148460254, -0.0007859953573283508], [4.191790784859682, -0.0007730211810442285], [4.191793787503557, -0.0007730318774058099], [4.182896678176354, -0.0007657408214699179], [4.1687994321361, -0.0007541107418540531], [4.161389075583238, -0.000747945981029802]], [[4.161389075583238, -0.000747945981029802], [4.132164641274653, -0.0007230564700542201], [4.118628903862685, -0.0007115383978118413], [4.080494773914483, -0.0006773334565731873], [4.080566157323515, -0.0006776004086127636], [4.060767385840448, -0.0006587360920966854], [4.033085647267117, -0.0005335929996712269], [4.020952785342844, -0.0005246008625839661]], [[4.020952785342844, -0.0005246008625839661], [4.014372906608827, -0.0005180374841270189], [4.011243093154608, -0.0005148358892058484], [4.002340587912277, -0.0005052306182137265], [4.002342980909355, -0.0005052406521025021], [3.9976182699149447, -0.0004998112869713683], [3.990512922109079, -0.0004911055551390822], [3.9869790793358666, -0.0004864641209751082]], [[3.9869790793358666, -0.0004864641209751082], [3.970704237026658, -0.00046017858023514454], [3.9653904093244416, -0.00044819607321442746], [3.9594194027563887, -0.00041106677816626653], [3.959504808246098, -0.0004118159239348302], [3.963479620431516, -0.000390131537015936], [3.9817756318927575, -0.00037244260093863583], [3.998025833803319, -0.00035527098058666805]], [[3.998025833803319, -0.00035527098058666805], [4.011916600250683, -0.00034374563410423625], [4.019632469097206, -0.00033808888993821433], [4.046708784064827, -0.000320220159941836], [4.046680027033316, -0.0003203124181017996], [4.064783434991235, -0.00030963700799276224], [4.098448708587169, -0.0002917215928818428], [4.118905756540519, -0.0002816141323073241]], [[4.118905756540519, -0.0002816141323073241], [4.138014779239236, -0.0002725259663761833], [4.147956254982362, -0.00026798824917970013], [4.180049547327959, -0.0002536537494468422], [4.180032978674946, -0.00025369029872478405], [4.199818110193509, -0.00024511312422637564], [4.235462084444504, -0.0001470394043868704], [4.256462259212833, -0.00013993581870470504]], [[4.256462259212833, -0.00013993581870470504], [4.270137212387004, -0.00013450381373088412], [4.277078858651919, -0.000131776365294476], [4.298548851525816, -0.00012332579745176746], [4.298546413016147, -0.00012333103451118402], [4.311211730249501, -0.00011836033499937554], [4.332414993754451, -0.00011006957279566828], [4.344160922537187, -0.00010548554790943028]], [[4.344160922537187, -0.00010548554790943028], [4.433673850906804, -7.010804254594175e-5], [4.481855728263074, -5.186607539625133e-5], [4.650256310466432, 1.5015837321780872e-5], [4.6496299320334415, 1.360831353809937e-5], [4.762448084057376, 6.067766113206346e-5], [4.9734824412997405, 9.823518221564265e-5], [5.102250935013903, 0.00015889831027734351]], [[5.102250935013903, 0.00015889831027734351], [5.185178854989783, 0.00019764226225158854], [5.227860065332525, 0.00021730923848948614], [5.365243905106134, 0.0002833569260522785], [5.3650948075630085, 0.0002829008552987771], [5.449455297509074, 0.00032489677265455045], [5.59591118607788, 0.0003990794938263228], [5.680083395141832, 0.0004429641856812964]], [[5.680083395141832, 0.0004429641856812964], [5.6881035972401, 0.00044719236034241683], [5.692120554984645, 0.0004493078384644319], [5.704236654088512, 0.000455711183155801], [5.704236559827891, 0.00045571087932650854], [5.711192983193512, 0.00045939558717738443], [5.722556732747536, 0.00046542740201684], [5.728699994180409, 0.0004686946224058213]]], true, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}([35.79447656599536, 0.001382400541923391], [35.7627944380974, 0.0013798692620059898], [5.680083395141832, 0.0004429641856812964], [5.6881035972401, 0.00044719236034241683], [5.692120554984645, 0.0004493078384644319], [5.704236654088512, 0.000455711183155801], [5.704236559827891, 0.00045571087932650854], [5.711192983193512, 0.00045939558717738443], [5.722556732747536, 0.00046542740201684], [5.728699994180409, 0.0004686946224058213], [-2.0646913943555834e-8, -1.2092009563929155e-11], [35.7905014803083, 0.001382076280681351], [-5.768023204130153e-7, -5.075556923004591e-6], OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}(0.16666666666666666, 0.0625, 0.1875, 0.25, -0.75, -0.75, 3.75, -3.0, 0.5, 0.26895043731778423, -0.7084548104956269, 0.8658892128279884, 0.15462307371928363, 0.06184922948771345, -0.02947695035460993, 0.18500664893617022, 0.4802345261121857, -0.5337849069148937, -0.013090093085106383, 0.7861107753062541, 0.08783068783068783, 0.3006060606060606, 0.22777777777777777, 0.027777777777777776, 0.06218596218596219, 0.2938217338217338, 0.16666666666666666, 0.25, 0.5, 0.5, 0.6428571428571429, 0.875, -0.19894179894179895, 0.9115151515151515, -1.9777777777777779, -0.1111111111111111, 1.67013727013727, -0.2938217338217338, 1.892063492063492, -6.067155067155067, 7.282458282458283, -4.0195360195360195, -7.214545454545455, 20.676923076923078, -20.31142191142191, 7.14965034965035, 7.866666666666666, -18.78205128205128, 13.508547008547009, -2.3653846153846154, 2.0, -5.294871794871795, 4.534188034188034, -1.2115384615384615, -1.4924630924630924, 1.5785667324128863, 1.1958838881915805, -1.219801565955412, -7.051721611721612, 16.273203719357564, -11.978886071193763, 3.0512256973795435, 4.0, -8.384615384615385, 5.769230769230769, -1.3846153846153846))), true, 0, DiffEqBase.DEStats
Number of function 1 evaluations: 2383
Number of function 2 evaluations: 0
Number of W matrix evaluations: 0
Number of linear solves: 0
Number of Jacobians created: 0
Number of nonlinear solver iterations: 0
Number of nonlinear solver convergence failures: 0
Number of rootfind condition calls: 0
Number of accepted steps: 141
Number of rejected steps: 199, :Success) … SciMLBase.ODESolution{Float64, 2, Vector{Vector{Float64}}, Nothing, Nothing, Vector{Float64}, Vector{Vector{Vector{Float64}}}, SciMLBase.ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Any}, SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}, SciMLBase.StandardODEProblem}, OwrenZen5, OrdinaryDiffEq.InterpolationData{SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}}, DiffEqBase.DEStats}([[0.0, 0.0], [1.3909884214212356, 165.81412970518898], [1.759025537004081, 209.69219766573335], [1.837139155517779, 219.00536195562842], [2.608640546738794, 297.2181378118354], [2.7539430746918847, 311.27646250285073], [3.577165949644612, 396.69778075027426], [3.6824284801091163, 407.3719835049487], [4.306789520010282, 506.8536452455899], [4.531558609020455, 544.7232134967327] … [35.31685342175606, 0.001976040276746921], [35.5975348540654, 0.0019162150994726148], [36.25031668571065, 0.0017967505155087893], [36.522923404798846, 0.0017563368885410748], [37.12518876143997, 0.0016767715630689258], [38.030104834769574, 0.0016343751269014544], [38.89626991138964, 0.001568760034031317], [39.495212107347996, 0.0015627862948897773], [39.842821440863084, 0.001571715806109324], [40.625714042901755, 0.0016187461615522287]], nothing, nothing, [0.0, 2.287699798302756e-6, 2.8929892884812115e-6, 3.0214572252036123e-6, 4.306136592427621e-6, 4.551603824275233e-6, 5.954447599365852e-6, 6.135132753988538e-6, 7.1911037829782706e-6, 7.563614310142968e-6 … 0.9653350568536709, 1.0228440073724618, 1.1625770018911021, 1.2229073850559418, 1.358695331868005, 1.5616073284711356, 1.7458463965441653, 1.8626531349393673, 1.9250693099051381, 2.05], [[[0.0, 0.0]], [[608040.8247633921, 7.248484675667888e7], [608035.670893591, 7.248173586927907e7], [608033.0992984634, 7.248018372692654e7], [608025.4056861517, 7.24755402051472e7], [608025.4056861564, 7.247554020516397e7], [608021.0236450804, 7.247289552876696e7], [608026.9794451329, 7.248619803123897e7], [608030.8075513056, 7.248855030511126e7]], [[608030.8075513056, 7.248855030511126e7], [608032.1597984383, 7.248938115010317e7], [608032.8362769916, 7.248979679558551e7], [608034.8671188287, 7.249104460200115e7], [608034.8671188285, 7.24910446020008e7], [608036.0285498324, 7.249175822495258e7], [608037.917348511, 7.24929187783557e7], [608038.9351493893, 7.249354416145161e7]], [[608038.9351493893, 7.249354416145161e7], [608039.2232722958, 7.24937211978881e7], [608039.3673497323, 7.249380972614485e7], [608039.7996453432, 7.249407535007311e7], [608039.7996453432, 7.249407535007311e7], [608040.0467141735, 7.249422716176799e7], [608040.4482673755, 7.24944738970241e7], [607903.5795416782, 6.405156295609052e7]], [[607903.5795416782, 6.405156295609052e7], [605412.9186273363, 6.295883775143304e7], [604183.1124922389, 6.2428711692332685e7], [600509.3197507524, 6.085137611398111e7], [600509.8847584539, 6.085276432210014e7], [598430.7581664412, 5.997021481744422e7], [595084.7683137077, 5.856874857485089e7], [593298.9822814687, 5.7829025409722865e7]], [[593298.9822814687, 5.7829025409722865e7], [592845.632793256, 5.76420681378686e7], [592619.4863892233, 5.754911162104449e7], [591941.5981653151, 5.727069893641375e7], [591941.6017394827, 5.727070717565168e7], [591554.9539150101, 5.711227823046924e7], [590927.7711371706, 5.685588171134682e7], [590627.4255635143, 6.253652594972827e7]], [[590627.4255635143, 6.253652594972827e7], [589349.8613901825, 6.197839785481159e7], [588715.289757174, 6.170371108267241e7], [586815.9019627649, 6.088333214462055e7], [586815.9827045534, 6.088352854281375e7], [585736.2308226605, 6.0420088847171575e7], [583990.521289307, 5.967579004746128e7], [583054.9644243876, 5.927925871848881e7]], [[583054.9644243876, 5.927925871848881e7], [582894.5896452619, 5.921143774633e7], [582814.4695632772, 5.917759518107399e7], [582574.1798824517, 5.907612737199045e7], [582574.1800462637, 5.907612775718079e7], [582436.9635524068, 5.901823356464205e7], [582214.1296558481, 5.8924292048524685e7], [582552.4571760709, 8.902673310334748e7]], [[582552.4571760709, 8.902673310334748e7], [585405.9339381144, 9.068626006076479e7], [586854.0772259876, 9.154508178827803e7], [591222.1618336055, 9.414974813925698e7], [591221.2391973421, 9.414686539252062e7], [593748.4254488844, 9.56775357589567e7], [597901.4174506767, 9.822352804933555e7], [600162.7730424949, 9.962851301278773e7]], [[600162.7730424949, 9.962851301278773e7], [601231.5710392946, 1.002961621361864e8], [601768.8779815085, 1.0063420877960983e8], [603383.9110147124, 1.0165215892708156e8], [603383.8652806995, 1.0165200500761278e8], [604310.8134603505, 1.022393786573808e8], [605823.3203193956, 1.0320230356425205e8], [606641.0021720803, 1.0372534036953527e8]] … [[5.369137784998568, -0.0012544147041738535], [5.289302089086641, -0.0012029557571202692], [5.252227899688971, -0.0011799458699004875], [5.145006747149276, -0.001111800882210422], [5.145408860200649, -0.0011129127100319176], [5.087889187910974, -0.0010756503552777938], [5.000469492075575, -0.0011315565540731664], [4.954391644894541, -0.0010938715299041364]], [[4.954391644894541, -0.0010938715299041364], [4.928714560566038, -0.0010751650813937415], [4.916278811324837, -0.0010662188098115363], [4.879672030073587, -0.001039601727839185], [4.879692493712164, -0.001039666535525733], [4.85941967346957, -0.0010248501437076741], [4.827519331067096, -0.0010015580419240875], [4.810846429467412, -0.0009893357727998433]], [[4.810846429467412, -0.0009893357727998433], [4.7587595461074566, -0.0009505419285567684], [4.734745970896119, -0.0009330449456228399], [4.66642984536604, -0.0008811880572583961], [4.666653487370081, -0.0008819109142662214], [4.630804520542087, -0.0008534888236747936], [4.578607612146223, -0.0007122971606764339], [4.554848891039233, -0.0006982758661314445]], [[4.554848891039233, -0.0006982758661314445], [4.541887528931285, -0.0006884988209967572], [4.53567929780564, -0.0006837740538486255], [4.5177427771870216, -0.0006696361402291201], [4.517750835583606, -0.0006696610392326319], [4.508046973803675, -0.0006617178026814738], [4.49314765234185, -0.0006490864844654282], [4.485561420368871, -0.0006423945334047671]], [[4.485561420368871, -0.0006423945334047671], [4.464480341312518, -0.0006224681310860246], [4.455215929257804, -0.0006131852397963928], [4.431100659428477, -0.0005852089098717708], [4.431163136361142, -0.0005854577149662003], [4.42016380422595, -0.0005697406303855142], [4.406877075245653, -0.0005452743751555599], [4.4061117700916625, -0.0002305291310846294]], [[4.4061117700916625, -0.0002305291310846294], [4.414350578114633, -0.00022475837354366695], [4.42062096520601, -0.00022172051338326354], [4.4492378160978765, -0.00021072215133491942], [4.4491691267103075, -0.00021087902462772713], [4.472474358261655, -0.000203287275700553], [4.521925639448047, -0.00018904240299137134], [4.553497997324051, -0.0004372262614879092]], [[4.553497997324051, -0.0004372262614879092], [4.589853219810091, -0.0004122057270191878], [4.610509823383745, -0.00040008093218543424], [4.686767962672155, -0.000359374244880413], [4.686486900715339, -0.0003601710638755577], [4.739915767572305, -0.0003340722897659206], [4.842897361078497, -0.0002887314523090925], [4.907840929638604, -0.0002613223602337474]], [[4.907840929638604, -0.0002613223602337474], [4.970661965262926, -9.82392620761446e-5], [5.004723547324177, -8.780828718519358e-5], [5.117390285756147, -3.902574281173339e-5], [5.117395596928905, -6.525595638402423e-5], [5.1884020062415965, -1.034482615358762e-5], [5.315131753241078, 3.250581499016211e-5], [5.389615637533649, 6.64913931367893e-5]], [[5.389615637533649, 6.64913931367893e-5], [5.44579750260925, 9.010579501175743e-5], [5.474472088823364, 0.00010199196875895853], [5.565114378634071, 0.0001407217240853853], [5.565055104287091, 0.00014055509884286456], [5.619646037863335, 0.000164403305350671], [5.712743813442699, 0.0002055106678283021], [5.76529486208369, 0.0002291398733264018]], [[5.76529486208369, 0.0002291398733264018], [5.913445196172616, 0.00021184250030075683], [5.989691575075203, 0.0002442324598472506], [6.243691101724199, 0.0003507446664839115], [6.24265662944338, 0.0003695390657158905], [6.403988380601845, 0.0004230713815236986], [6.690753283953814, 0.0005664740656622009], [6.8603267642802095, 0.000648471605270221]]], SciMLBase.ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Any}, SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}, SciMLBase.StandardODEProblem}(SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}(GasChromatographySimulator.odesystem_r!, LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, SciMLBase.DEFAULT_OBSERVED, nothing), [0.0, 0.0], (0.0, 2.05), Any[GasChromatographySimulator.Column(2.05, 0.000104, [0.000104], 1.04e-7, [1.04e-7], "FS5ms", "He"), GasChromatographySimulator.Program{GasChromatographySimulator.var"#gf#2"{String, Matrix{Float64}}}([0.0, 0.9200000000000003, 0.9100000000000007, 0.9199999999999986, 0.9199999999999995, 0.910000000000001, 0.9199999999999999, 0.9199999999999982, 0.9200000000000008, 0.9300000000000006 … 0.9199999999999875, 0.9100000000000108, 0.9200000000000017, 0.9099999999999966, 0.9200000000000017, 0.9099999999999966, 0.9200000000000017, 0.9099999999999966, 0.9099999999999966, 0.9200000000000017], [49.323, 48.954, 49.323, 49.077, 49.569, 49.446, 48.831, 49.323, 49.077, 49.077 … 63.099, 56.211, 51.414, 48.339, 46.74, 45.51, 44.895, 44.28, 43.911, 43.542], [354589.48, 354562.67000000004, 354589.48, 354571.61, 354607.32, 354598.4, 354553.72, 354589.48, 354571.61, 354571.61 … 355560.34, 355082.14, 354740.58, 354517.9, 354400.94, 354310.42000000004, 354264.98, 354219.43, 354192.04000000004, 354164.6], [230168.87, 230224.3, 230168.87, 230205.81999999998, 230131.96, 230150.41, 230242.79, 230168.87, 230205.81999999998, 230205.81999999998 … 228154.50999999998, 229148.40000000002, 229856.25, 230316.84999999998, 230558.51, 230745.38999999998, 230839.16, 230933.15000000002, 230989.65000000002, 231046.23], GasChromatographySimulator.var"#gf#2"{String, Matrix{Float64}}("outlet", [-2.829 0.0 2.05 -3.0; -2.46 0.0 2.05 -3.0; … ; -1.23 0.0 2.05 -3.0; -0.984 0.0 2.05 -3.0]), [-2.829 0.0 2.05 -3.0; -2.46 0.0 2.05 -3.0; … ; -1.23 0.0 2.05 -3.0; -0.984 0.0 2.05 -3.0], 2051×108 extrapolate(interpolate((0.0:0.001:2.05,::Vector{Float64}), ::Matrix{Float64}, Gridded(Linear())), Flat()) with element type Float64:
319.644 319.644 319.644 319.89 … 316.077 315.954 315.831 315.708
319.644 319.644 319.644 319.89 316.077 315.954 315.831 315.708
319.645 319.644 319.645 319.89 316.077 315.954 315.831 315.708
319.645 319.645 319.645 319.891 316.078 315.954 315.831 315.708
319.645 319.645 319.645 319.891 316.078 315.955 315.831 315.708
319.645 319.645 319.645 319.891 … 316.078 315.955 315.832 315.708
319.646 319.645 319.646 319.891 316.078 315.955 315.832 315.709
319.646 319.646 319.646 319.892 316.078 315.955 315.832 315.709
319.646 319.646 319.646 319.892 316.079 315.955 315.832 315.709
319.646 319.646 319.646 319.892 316.079 315.955 315.832 315.709
⋮ ⋱ ⋮
322.44 322.075 322.44 322.199 318.022 317.413 317.046 316.68
322.444 322.079 322.444 322.203 318.025 317.415 317.048 316.682
322.448 322.082 322.448 322.206 318.028 317.417 317.05 316.683
322.452 322.086 322.452 322.21 … 318.03 317.419 317.052 316.685
322.456 322.089 322.456 322.213 318.033 317.421 317.054 316.686
322.46 322.093 322.46 322.217 318.036 317.423 317.056 316.688
322.465 322.097 322.465 322.22 318.039 317.426 317.057 316.689
322.469 322.1 322.469 322.224 318.042 317.428 317.059 316.691
322.473 322.104 322.473 322.227 … 318.045 317.43 317.061 316.692, 108-element extrapolate(interpolate((::Vector{Float64},), ::Vector{Float64}, Gridded(Linear())), Flat()) with element type Float64:
354589.48
354562.67000000004
354589.48
354571.61
354607.32
354598.4
354553.72
354589.48
354571.61
354571.61
⋮
355082.14
354740.58
354517.9
354400.94
354310.42000000004
354264.98
354219.43
354192.04000000004
354164.6, 108-element extrapolate(interpolate((::Vector{Float64},), ::Vector{Float64}, Gridded(Linear())), Flat()) with element type Float64:
230168.87
230224.3
230168.87
230205.81999999998
230131.96
230150.41
230242.79
230168.87
230205.81999999998
230205.81999999998
⋮
229148.40000000002
229856.25
230316.84999999998
230558.51
230745.38999999998
230839.16
230933.15000000002
230989.65000000002
231046.23), GasChromatographySimulator.Substance("C21", "629-94-7", 546.54, 41.43, 179.47, 0.001, "Leppert2020b, alkane, alkanes", 8.077845767414391e-5, 0.0, 0.0), GasChromatographySimulator.Options(OwrenZen5(), 1.0e-6, 0.001, "inlet", true, false, "Blumberg", "Pressure")], Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}(), SciMLBase.StandardODEProblem()), OwrenZen5(), OrdinaryDiffEq.InterpolationData{SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}}(SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}(GasChromatographySimulator.odesystem_r!, LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, SciMLBase.DEFAULT_OBSERVED, nothing), [[0.0, 0.0], [1.3909884214212356, 165.81412970518898], [1.759025537004081, 209.69219766573335], [1.837139155517779, 219.00536195562842], [2.608640546738794, 297.2181378118354], [2.7539430746918847, 311.27646250285073], [3.577165949644612, 396.69778075027426], [3.6824284801091163, 407.3719835049487], [4.306789520010282, 506.8536452455899], [4.531558609020455, 544.7232134967327] … [35.31685342175606, 0.001976040276746921], [35.5975348540654, 0.0019162150994726148], [36.25031668571065, 0.0017967505155087893], [36.522923404798846, 0.0017563368885410748], [37.12518876143997, 0.0016767715630689258], [38.030104834769574, 0.0016343751269014544], [38.89626991138964, 0.001568760034031317], [39.495212107347996, 0.0015627862948897773], [39.842821440863084, 0.001571715806109324], [40.625714042901755, 0.0016187461615522287]], [0.0, 2.287699798302756e-6, 2.8929892884812115e-6, 3.0214572252036123e-6, 4.306136592427621e-6, 4.551603824275233e-6, 5.954447599365852e-6, 6.135132753988538e-6, 7.1911037829782706e-6, 7.563614310142968e-6 … 0.9653350568536709, 1.0228440073724618, 1.1625770018911021, 1.2229073850559418, 1.358695331868005, 1.5616073284711356, 1.7458463965441653, 1.8626531349393673, 1.9250693099051381, 2.05], [[[0.0, 0.0]], [[608040.8247633921, 7.248484675667888e7], [608035.670893591, 7.248173586927907e7], [608033.0992984634, 7.248018372692654e7], [608025.4056861517, 7.24755402051472e7], [608025.4056861564, 7.247554020516397e7], [608021.0236450804, 7.247289552876696e7], [608026.9794451329, 7.248619803123897e7], [608030.8075513056, 7.248855030511126e7]], [[608030.8075513056, 7.248855030511126e7], [608032.1597984383, 7.248938115010317e7], [608032.8362769916, 7.248979679558551e7], [608034.8671188287, 7.249104460200115e7], [608034.8671188285, 7.24910446020008e7], [608036.0285498324, 7.249175822495258e7], [608037.917348511, 7.24929187783557e7], [608038.9351493893, 7.249354416145161e7]], [[608038.9351493893, 7.249354416145161e7], [608039.2232722958, 7.24937211978881e7], [608039.3673497323, 7.249380972614485e7], [608039.7996453432, 7.249407535007311e7], [608039.7996453432, 7.249407535007311e7], [608040.0467141735, 7.249422716176799e7], [608040.4482673755, 7.24944738970241e7], [607903.5795416782, 6.405156295609052e7]], [[607903.5795416782, 6.405156295609052e7], [605412.9186273363, 6.295883775143304e7], [604183.1124922389, 6.2428711692332685e7], [600509.3197507524, 6.085137611398111e7], [600509.8847584539, 6.085276432210014e7], [598430.7581664412, 5.997021481744422e7], [595084.7683137077, 5.856874857485089e7], [593298.9822814687, 5.7829025409722865e7]], [[593298.9822814687, 5.7829025409722865e7], [592845.632793256, 5.76420681378686e7], [592619.4863892233, 5.754911162104449e7], [591941.5981653151, 5.727069893641375e7], [591941.6017394827, 5.727070717565168e7], [591554.9539150101, 5.711227823046924e7], [590927.7711371706, 5.685588171134682e7], [590627.4255635143, 6.253652594972827e7]], [[590627.4255635143, 6.253652594972827e7], [589349.8613901825, 6.197839785481159e7], [588715.289757174, 6.170371108267241e7], [586815.9019627649, 6.088333214462055e7], [586815.9827045534, 6.088352854281375e7], [585736.2308226605, 6.0420088847171575e7], [583990.521289307, 5.967579004746128e7], [583054.9644243876, 5.927925871848881e7]], [[583054.9644243876, 5.927925871848881e7], [582894.5896452619, 5.921143774633e7], [582814.4695632772, 5.917759518107399e7], [582574.1798824517, 5.907612737199045e7], [582574.1800462637, 5.907612775718079e7], [582436.9635524068, 5.901823356464205e7], [582214.1296558481, 5.8924292048524685e7], [582552.4571760709, 8.902673310334748e7]], [[582552.4571760709, 8.902673310334748e7], [585405.9339381144, 9.068626006076479e7], [586854.0772259876, 9.154508178827803e7], [591222.1618336055, 9.414974813925698e7], [591221.2391973421, 9.414686539252062e7], [593748.4254488844, 9.56775357589567e7], [597901.4174506767, 9.822352804933555e7], [600162.7730424949, 9.962851301278773e7]], [[600162.7730424949, 9.962851301278773e7], [601231.5710392946, 1.002961621361864e8], [601768.8779815085, 1.0063420877960983e8], [603383.9110147124, 1.0165215892708156e8], [603383.8652806995, 1.0165200500761278e8], [604310.8134603505, 1.022393786573808e8], [605823.3203193956, 1.0320230356425205e8], [606641.0021720803, 1.0372534036953527e8]] … [[5.369137784998568, -0.0012544147041738535], [5.289302089086641, -0.0012029557571202692], [5.252227899688971, -0.0011799458699004875], [5.145006747149276, -0.001111800882210422], [5.145408860200649, -0.0011129127100319176], [5.087889187910974, -0.0010756503552777938], [5.000469492075575, -0.0011315565540731664], [4.954391644894541, -0.0010938715299041364]], [[4.954391644894541, -0.0010938715299041364], [4.928714560566038, -0.0010751650813937415], [4.916278811324837, -0.0010662188098115363], [4.879672030073587, -0.001039601727839185], [4.879692493712164, -0.001039666535525733], [4.85941967346957, -0.0010248501437076741], [4.827519331067096, -0.0010015580419240875], [4.810846429467412, -0.0009893357727998433]], [[4.810846429467412, -0.0009893357727998433], [4.7587595461074566, -0.0009505419285567684], [4.734745970896119, -0.0009330449456228399], [4.66642984536604, -0.0008811880572583961], [4.666653487370081, -0.0008819109142662214], [4.630804520542087, -0.0008534888236747936], [4.578607612146223, -0.0007122971606764339], [4.554848891039233, -0.0006982758661314445]], [[4.554848891039233, -0.0006982758661314445], [4.541887528931285, -0.0006884988209967572], [4.53567929780564, -0.0006837740538486255], [4.5177427771870216, -0.0006696361402291201], [4.517750835583606, -0.0006696610392326319], [4.508046973803675, -0.0006617178026814738], [4.49314765234185, -0.0006490864844654282], [4.485561420368871, -0.0006423945334047671]], [[4.485561420368871, -0.0006423945334047671], [4.464480341312518, -0.0006224681310860246], [4.455215929257804, -0.0006131852397963928], [4.431100659428477, -0.0005852089098717708], [4.431163136361142, -0.0005854577149662003], [4.42016380422595, -0.0005697406303855142], [4.406877075245653, -0.0005452743751555599], [4.4061117700916625, -0.0002305291310846294]], [[4.4061117700916625, -0.0002305291310846294], [4.414350578114633, -0.00022475837354366695], [4.42062096520601, -0.00022172051338326354], [4.4492378160978765, -0.00021072215133491942], [4.4491691267103075, -0.00021087902462772713], [4.472474358261655, -0.000203287275700553], [4.521925639448047, -0.00018904240299137134], [4.553497997324051, -0.0004372262614879092]], [[4.553497997324051, -0.0004372262614879092], [4.589853219810091, -0.0004122057270191878], [4.610509823383745, -0.00040008093218543424], [4.686767962672155, -0.000359374244880413], [4.686486900715339, -0.0003601710638755577], [4.739915767572305, -0.0003340722897659206], [4.842897361078497, -0.0002887314523090925], [4.907840929638604, -0.0002613223602337474]], [[4.907840929638604, -0.0002613223602337474], [4.970661965262926, -9.82392620761446e-5], [5.004723547324177, -8.780828718519358e-5], [5.117390285756147, -3.902574281173339e-5], [5.117395596928905, -6.525595638402423e-5], [5.1884020062415965, -1.034482615358762e-5], [5.315131753241078, 3.250581499016211e-5], [5.389615637533649, 6.64913931367893e-5]], [[5.389615637533649, 6.64913931367893e-5], [5.44579750260925, 9.010579501175743e-5], [5.474472088823364, 0.00010199196875895853], [5.565114378634071, 0.0001407217240853853], [5.565055104287091, 0.00014055509884286456], [5.619646037863335, 0.000164403305350671], [5.712743813442699, 0.0002055106678283021], [5.76529486208369, 0.0002291398733264018]], [[5.76529486208369, 0.0002291398733264018], [5.913445196172616, 0.00021184250030075683], [5.989691575075203, 0.0002442324598472506], [6.243691101724199, 0.0003507446664839115], [6.24265662944338, 0.0003695390657158905], [6.403988380601845, 0.0004230713815236986], [6.690753283953814, 0.0005664740656622009], [6.8603267642802095, 0.000648471605270221]]], true, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}([40.625714042901755, 0.0016187461615522287], [39.842821440863084, 0.001571715806109324], [5.76529486208369, 0.0002291398733264018], [5.913445196172616, 0.00021184250030075683], [5.989691575075203, 0.0002442324598472506], [6.243691101724199, 0.0003507446664839115], [6.24265662944338, 0.0003695390657158905], [6.403988380601845, 0.0004230713815236986], [6.690753283953814, 0.0005664740656622009], [6.8603267642802095, 0.000648471605270221], [1.5667197255286514e-5, -2.1955224691856057e-6], [40.519980674956976, 0.001607976720011952], [0.00038563781552064427, -0.8383868972944813], OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}(0.16666666666666666, 0.0625, 0.1875, 0.25, -0.75, -0.75, 3.75, -3.0, 0.5, 0.26895043731778423, -0.7084548104956269, 0.8658892128279884, 0.15462307371928363, 0.06184922948771345, -0.02947695035460993, 0.18500664893617022, 0.4802345261121857, -0.5337849069148937, -0.013090093085106383, 0.7861107753062541, 0.08783068783068783, 0.3006060606060606, 0.22777777777777777, 0.027777777777777776, 0.06218596218596219, 0.2938217338217338, 0.16666666666666666, 0.25, 0.5, 0.5, 0.6428571428571429, 0.875, -0.19894179894179895, 0.9115151515151515, -1.9777777777777779, -0.1111111111111111, 1.67013727013727, -0.2938217338217338, 1.892063492063492, -6.067155067155067, 7.282458282458283, -4.0195360195360195, -7.214545454545455, 20.676923076923078, -20.31142191142191, 7.14965034965035, 7.866666666666666, -18.78205128205128, 13.508547008547009, -2.3653846153846154, 2.0, -5.294871794871795, 4.534188034188034, -1.2115384615384615, -1.4924630924630924, 1.5785667324128863, 1.1958838881915805, -1.219801565955412, -7.051721611721612, 16.273203719357564, -11.978886071193763, 3.0512256973795435, 4.0, -8.384615384615385, 5.769230769230769, -1.3846153846153846))), true, 0, DiffEqBase.DEStats
Number of function 1 evaluations: 2341
Number of function 2 evaluations: 0
Number of W matrix evaluations: 0
Number of linear solves: 0
Number of Jacobians created: 0
Number of nonlinear solver iterations: 0
Number of nonlinear solver convergence failures: 0
Number of rootfind condition calls: 0
Number of accepted steps: 155
Number of rejected steps: 179, :Success), SciMLBase.ODESolution{Float64, 2, Vector{Vector{Float64}}, Nothing, Nothing, Vector{Float64}, Vector{Vector{Vector{Float64}}}, SciMLBase.ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Any}, SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}, SciMLBase.StandardODEProblem}, OwrenZen5, OrdinaryDiffEq.InterpolationData{SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}}, DiffEqBase.DEStats}([[0.0, 0.0], [1.3801777148181498, 400.23322274966677], [1.7433178982718291, 505.5529044283315], [1.8297668151776985, 530.6260934317447], [1.932488695513893, 557.0025696812135], [1.9772069889515045, 568.2600342041795], [2.420810029208011, 677.1107714437113], [2.7635506844419417, 757.7791521551512], [3.797696212641467, 1015.7304688304255], [4.404223948135306, 1255.783961178649] … [37.35007171285232, 0.0019306578480864493], [37.9125279301356, 0.0018830424934257212], [38.02748597063922, 0.0018710314874614978], [38.08016468919667, 0.0018628179600077047], [38.465622246387895, 0.001805938277778085], [38.99350688349735, 0.0017373195801311607], [39.93956386941826, 0.0016671940326404326], [41.070784071644546, 0.0016388544323151972], [41.8057271710196, 0.0016646435432803495], [42.15798020489517, 0.0016855266752388513]], nothing, nothing, [0.0, 9.534245336030414e-7, 1.2042789557303258e-6, 1.2639967067252222e-6, 1.3350750361953053e-6, 1.3660929276913773e-6, 1.6762718426520977e-6, 1.9190409321896892e-6, 2.661772676909909e-6, 3.090881118412222e-6 … 1.110211089422416, 1.2288949146875594, 1.2534298935104686, 1.2647042515032367, 1.3478042532119303, 1.4623524939632755, 1.6627266293422003, 1.8786873336890206, 1.9986457192720721, 2.05], [[[0.0, 0.0]], [[1.447627750110473e6, 4.1980878094714904e8], [1.4476156295790782e6, 4.1979090716929746e8], [1.4476095815775704e6, 4.19781988789321e8], [1.447591486195538e6, 4.197553059746435e8], [1.4475914861955496e6, 4.197553059747385e8], [1.447581178838332e6, 4.197401077786127e8], [1.447594575383894e6, 4.198159605970808e8], [1.447603659522925e6, 4.198295240323271e8]], [[1.447603659522925e6, 4.198295240323271e8], [1.4476068505612724e6, 4.198342880773797e8], [1.4476084469209274e6, 4.1983667137640417e8], [1.4476132393296699e6, 4.198438262549815e8], [1.4476132393296699e6, 4.1984382625497967e8], [1.4476159800983225e6, 4.198479181392178e8], [1.4476204373359787e6, 4.1985457269639444e8], [1.447622839175841e6, 4.198581586089907e8]], [[1.447622839175841e6, 4.198581586089907e8], [1.4476236018050804e6, 4.1985929720581144e8], [1.4476239831673002e6, 4.198598665765133e8], [1.4476251274425727e6, 4.1986157497072697e8], [1.4476251274425727e6, 4.1986157497072697e8], [1.4476257814415805e6, 4.1986255138755995e8], [1.4476268443875918e6, 4.198641383620368e8], [1.4476274168444686e6, 4.1986499303911453e8]], [[1.4476274168444686e6, 4.1986499303911453e8], [1.4468219226087509e6, 3.6833813481324697e8], [1.4464143108003424e6, 3.679407024193897e8], [1.4451922262837016e6, 3.6657841202746105e8], [1.44519219213404e6, 3.669218687726424e8], [1.4444948467890902e6, 3.6583256270657384e8], [1.4433630751411726e6, 3.647371115212282e8], [1.4427544281256609e6, 3.640536215857783e8]], [[1.4427544281256609e6, 3.640536215857783e8], [1.4424004827074942e6, 3.6367984032612723e8], [1.4422236423779738e6, 3.634932839347066e8], [1.4416932598804247e6, 3.6293390956012034e8], [1.4416932601680132e6, 3.629339112514855e8], [1.4413903651090963e6, 3.626146992004348e8], [1.440898441497312e6, 3.620966515084654e8], [1.44063370316312e6, 3.618180450240035e8]], [[1.44063370316312e6, 3.618180450240035e8], [1.4371091336852624e6, 3.58114685560562e8], [1.4353599733522895e6, 3.562959470591519e8], [1.4301259073048644e6, 3.508672828177317e8], [1.430126192297467e6, 3.508689569997914e8], [1.4271527147635748e6, 3.478068099668279e8], [1.4223484728039696e6, 3.4289700914550203e8], [1.4197753453024474e6, 3.402849726579137e8]], [[1.4197753453024474e6, 3.402849726579137e8], [1.4170978436893995e6, 3.3757631518212056e8], [1.4157667815234126e6, 3.362406114012429e8], [1.4117815010445577e6, 3.3224932444061977e8], [1.411781629665202e6, 3.3225005283474624e8], [1.409514603551125e6, 3.299922725499926e8], [1.4058469161417175e6, 3.2636081677619493e8], [1.4041936584928837e6, 3.596560880065357e8]], [[1.4041936584928837e6, 3.596560880065357e8], [1.4002068522111953e6, 3.5544107491792464e8], [1.3982306734447824e6, 3.533769087289156e8], [1.3923196727611907e6, 3.472201920113437e8], [1.392320106953485e6, 3.4722275125825346e8], [1.38896513731579e6, 3.4375655713206637e8], [1.3835495729696958e6, 3.382110216492195e8], [1.392346034438945e6, 5.283540803371473e8]], [[1.392346034438945e6, 5.283540803371473e8], [1.3992579697188835e6, 5.38299598351258e8], [1.4027664458729837e6, 5.434485852026867e8], [1.4133498159009502e6, 5.590663610231189e8], [1.4133475204682425e6, 5.590486375911407e8], [1.4194715469840947e6, 5.682297267143642e8], [1.4295366318131613e6, 5.835043691275935e8], [1.435017945717589e6, 5.919359231343682e8]] … [[4.8174915947922905, -0.00041748374346406176], [4.813941693946178, -0.00041690751710937897], [4.812185940373991, -0.00041661939644175943], [4.806967483177135, -0.0004157492671444602], [4.80696763021225, -0.0004157493099052564], [4.804024190502375, -0.00041524956847468434], [4.799302825257436, -0.0004144335184640773], [4.796791884580036, -0.0004139920665538171]], [[4.796791884580036, -0.0004139920665538171], [4.774695839614329, -0.00040985732471044106], [4.764531887559454, -0.00040779819693557377], [4.73636081401846, -0.0004013538912927192], [4.73640389545698, -0.00040137009668173517], [4.722114837337192, -0.000397565339712544], [4.701857318236041, -0.0003912423665822756], [4.692435048979105, -0.00038774569984051854]], [[4.692435048979105, -0.00038774569984051854], [4.6900203994090495, -0.0003867686819820496], [4.688847723904249, -0.0003862812928778145], [4.685441806768877, -0.0003848053630083792], [4.685441998870195, -0.00038480560469651205], [4.683577214137617, -0.0003839567955449053], [4.68037584710524, -0.0007390735291239244], [4.6775177070245375, -0.0007340163739411559]], [[4.6775177070245375, -0.0007340163739411559], [4.675792350318102, -0.000732171804763511], [4.674938909974199, -0.0007312551275005454], [4.672405533970056, -0.0007285059924987808], [4.672405572562034, -0.0007285061586587338], [4.670978940781604, -0.0007269404204638329], [4.668691845499146, -0.0007244047160715273], [4.667476650066876, -0.0007230435084246167]], [[4.667476650066876, -0.0007230435084246167], [4.6560878799870355, -0.0007096930412060643], [4.650890135217316, -0.0007033074948774108], [4.636795895304432, -0.0006841243328911068], [4.636809606835987, -0.0006841908656937778], [4.629872877718026, -0.0006734018657280983], [4.620394940794003, -0.0006563130119859931], [4.616204666828993, -0.0006472510659072293]], [[4.616204666828993, -0.0006472510659072293], [4.610157354240708, -0.0006306330243723423], [4.608028607994891, -0.0006227494670556055], [4.604910199967608, -0.0005987614699745976], [4.604922183001228, -0.0005989177327961484], [4.605468236147452, -0.0005852529875530739], [4.610117201649354, -0.000563508689142959], [4.616186946512412, -0.0004245136345970848]], [[4.616186946512412, -0.0004245136345970848], [4.638086352185775, -0.0004012580822340074], [4.651783839798061, -0.0003900578138309979], [4.706842682897361, -0.00035269009236353144], [4.706647041339425, -0.0003534388866560834], [4.74793035517806, -0.00032963352920594574], [4.831318396699377, -0.00028855146959147785], [4.885744495606477, -0.0002591591646471962]], [[4.885744495606477, -0.0002591591646471962], [4.977500907584636, -0.00022645489375527385], [5.027499010862285, -0.00020993321208860778], [5.207503038829497, -0.00014745632418828626], [5.206388917565888, -0.00014978105095279654], [5.330203518272698, -0.00010430225161989172], [5.566059694214376, -3.820032175377679e-6], [5.714923429638314, 4.971394202330816e-5]], [[5.714923429638314, 4.971394202330816e-5], [5.836994654944483, 9.6789519721854e-5], [5.900116238012842, 0.00012039960207752649], [6.1089848358262895, 0.00020460866187692328], [6.1083445684839495, 0.00020281175039279804], [6.239998334988574, 0.0002594977364441019], [6.47292683525905, 0.0003609279270671878], [6.608072738811973, 0.0003014445838253575]], [[6.608072738811973, 0.0003014445838253575], [6.6880817648848545, 0.0003343708799002595], [6.728501789582377, 0.000350676956387476], [6.855027547245016, 0.00040389445290761475], [6.854919814196105, 0.0004035385568118919], [6.930164390288084, 0.00043613509127001134], [7.056852849407107, 0.0004915482204569136], [7.1275319494865395, 0.0005231154472036294]]], SciMLBase.ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Any}, SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}, SciMLBase.StandardODEProblem}(SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}(GasChromatographySimulator.odesystem_r!, LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, SciMLBase.DEFAULT_OBSERVED, nothing), [0.0, 0.0], (0.0, 2.05), Any[GasChromatographySimulator.Column(2.05, 0.000104, [0.000104], 1.04e-7, [1.04e-7], "FS5ms", "He"), GasChromatographySimulator.Program{GasChromatographySimulator.var"#gf#2"{String, Matrix{Float64}}}([0.0, 0.9200000000000003, 0.9100000000000007, 0.9199999999999986, 0.9199999999999995, 0.910000000000001, 0.9199999999999999, 0.9199999999999982, 0.9200000000000008, 0.9300000000000006 … 0.9199999999999875, 0.9100000000000108, 0.9200000000000017, 0.9099999999999966, 0.9200000000000017, 0.9099999999999966, 0.9200000000000017, 0.9099999999999966, 0.9099999999999966, 0.9200000000000017], [49.323, 48.954, 49.323, 49.077, 49.569, 49.446, 48.831, 49.323, 49.077, 49.077 … 63.099, 56.211, 51.414, 48.339, 46.74, 45.51, 44.895, 44.28, 43.911, 43.542], [354589.48, 354562.67000000004, 354589.48, 354571.61, 354607.32, 354598.4, 354553.72, 354589.48, 354571.61, 354571.61 … 355560.34, 355082.14, 354740.58, 354517.9, 354400.94, 354310.42000000004, 354264.98, 354219.43, 354192.04000000004, 354164.6], [230168.87, 230224.3, 230168.87, 230205.81999999998, 230131.96, 230150.41, 230242.79, 230168.87, 230205.81999999998, 230205.81999999998 … 228154.50999999998, 229148.40000000002, 229856.25, 230316.84999999998, 230558.51, 230745.38999999998, 230839.16, 230933.15000000002, 230989.65000000002, 231046.23], GasChromatographySimulator.var"#gf#2"{String, Matrix{Float64}}("outlet", [-2.829 0.0 2.05 -3.0; -2.46 0.0 2.05 -3.0; … ; -1.23 0.0 2.05 -3.0; -0.984 0.0 2.05 -3.0]), [-2.829 0.0 2.05 -3.0; -2.46 0.0 2.05 -3.0; … ; -1.23 0.0 2.05 -3.0; -0.984 0.0 2.05 -3.0], 2051×108 extrapolate(interpolate((0.0:0.001:2.05,::Vector{Float64}), ::Matrix{Float64}, Gridded(Linear())), Flat()) with element type Float64:
319.644 319.644 319.644 319.89 … 316.077 315.954 315.831 315.708
319.644 319.644 319.644 319.89 316.077 315.954 315.831 315.708
319.645 319.644 319.645 319.89 316.077 315.954 315.831 315.708
319.645 319.645 319.645 319.891 316.078 315.954 315.831 315.708
319.645 319.645 319.645 319.891 316.078 315.955 315.831 315.708
319.645 319.645 319.645 319.891 … 316.078 315.955 315.832 315.708
319.646 319.645 319.646 319.891 316.078 315.955 315.832 315.709
319.646 319.646 319.646 319.892 316.078 315.955 315.832 315.709
319.646 319.646 319.646 319.892 316.079 315.955 315.832 315.709
319.646 319.646 319.646 319.892 316.079 315.955 315.832 315.709
⋮ ⋱ ⋮
322.44 322.075 322.44 322.199 318.022 317.413 317.046 316.68
322.444 322.079 322.444 322.203 318.025 317.415 317.048 316.682
322.448 322.082 322.448 322.206 318.028 317.417 317.05 316.683
322.452 322.086 322.452 322.21 … 318.03 317.419 317.052 316.685
322.456 322.089 322.456 322.213 318.033 317.421 317.054 316.686
322.46 322.093 322.46 322.217 318.036 317.423 317.056 316.688
322.465 322.097 322.465 322.22 318.039 317.426 317.057 316.689
322.469 322.1 322.469 322.224 318.042 317.428 317.059 316.691
322.473 322.104 322.473 322.227 … 318.045 317.43 317.061 316.692, 108-element extrapolate(interpolate((::Vector{Float64},), ::Vector{Float64}, Gridded(Linear())), Flat()) with element type Float64:
354589.48
354562.67000000004
354589.48
354571.61
354607.32
354598.4
354553.72
354589.48
354571.61
354571.61
⋮
355082.14
354740.58
354517.9
354400.94
354310.42000000004
354264.98
354219.43
354192.04000000004
354164.6, 108-element extrapolate(interpolate((::Vector{Float64},), ::Vector{Float64}, Gridded(Linear())), Flat()) with element type Float64:
230168.87
230224.3
230168.87
230205.81999999998
230131.96
230150.41
230242.79
230168.87
230205.81999999998
230205.81999999998
⋮
229148.40000000002
229856.25
230316.84999999998
230558.51
230745.38999999998
230839.16
230933.15000000002
230989.65000000002
231046.23), GasChromatographySimulator.Substance("C22", "629-97-0", 556.7, 41.89, 183.35, 0.001, "Leppert2020b, alkane, alkanes", 7.879073502414208e-5, 0.0, 0.0), GasChromatographySimulator.Options(OwrenZen5(), 1.0e-6, 0.001, "inlet", true, false, "Blumberg", "Pressure")], Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}(), SciMLBase.StandardODEProblem()), OwrenZen5(), OrdinaryDiffEq.InterpolationData{SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}}(SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}(GasChromatographySimulator.odesystem_r!, LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, SciMLBase.DEFAULT_OBSERVED, nothing), [[0.0, 0.0], [1.3801777148181498, 400.23322274966677], [1.7433178982718291, 505.5529044283315], [1.8297668151776985, 530.6260934317447], [1.932488695513893, 557.0025696812135], [1.9772069889515045, 568.2600342041795], [2.420810029208011, 677.1107714437113], [2.7635506844419417, 757.7791521551512], [3.797696212641467, 1015.7304688304255], [4.404223948135306, 1255.783961178649] … [37.35007171285232, 0.0019306578480864493], [37.9125279301356, 0.0018830424934257212], [38.02748597063922, 0.0018710314874614978], [38.08016468919667, 0.0018628179600077047], [38.465622246387895, 0.001805938277778085], [38.99350688349735, 0.0017373195801311607], [39.93956386941826, 0.0016671940326404326], [41.070784071644546, 0.0016388544323151972], [41.8057271710196, 0.0016646435432803495], [42.15798020489517, 0.0016855266752388513]], [0.0, 9.534245336030414e-7, 1.2042789557303258e-6, 1.2639967067252222e-6, 1.3350750361953053e-6, 1.3660929276913773e-6, 1.6762718426520977e-6, 1.9190409321896892e-6, 2.661772676909909e-6, 3.090881118412222e-6 … 1.110211089422416, 1.2288949146875594, 1.2534298935104686, 1.2647042515032367, 1.3478042532119303, 1.4623524939632755, 1.6627266293422003, 1.8786873336890206, 1.9986457192720721, 2.05], [[[0.0, 0.0]], [[1.447627750110473e6, 4.1980878094714904e8], [1.4476156295790782e6, 4.1979090716929746e8], [1.4476095815775704e6, 4.19781988789321e8], [1.447591486195538e6, 4.197553059746435e8], [1.4475914861955496e6, 4.197553059747385e8], [1.447581178838332e6, 4.197401077786127e8], [1.447594575383894e6, 4.198159605970808e8], [1.447603659522925e6, 4.198295240323271e8]], [[1.447603659522925e6, 4.198295240323271e8], [1.4476068505612724e6, 4.198342880773797e8], [1.4476084469209274e6, 4.1983667137640417e8], [1.4476132393296699e6, 4.198438262549815e8], [1.4476132393296699e6, 4.1984382625497967e8], [1.4476159800983225e6, 4.198479181392178e8], [1.4476204373359787e6, 4.1985457269639444e8], [1.447622839175841e6, 4.198581586089907e8]], [[1.447622839175841e6, 4.198581586089907e8], [1.4476236018050804e6, 4.1985929720581144e8], [1.4476239831673002e6, 4.198598665765133e8], [1.4476251274425727e6, 4.1986157497072697e8], [1.4476251274425727e6, 4.1986157497072697e8], [1.4476257814415805e6, 4.1986255138755995e8], [1.4476268443875918e6, 4.198641383620368e8], [1.4476274168444686e6, 4.1986499303911453e8]], [[1.4476274168444686e6, 4.1986499303911453e8], [1.4468219226087509e6, 3.6833813481324697e8], [1.4464143108003424e6, 3.679407024193897e8], [1.4451922262837016e6, 3.6657841202746105e8], [1.44519219213404e6, 3.669218687726424e8], [1.4444948467890902e6, 3.6583256270657384e8], [1.4433630751411726e6, 3.647371115212282e8], [1.4427544281256609e6, 3.640536215857783e8]], [[1.4427544281256609e6, 3.640536215857783e8], [1.4424004827074942e6, 3.6367984032612723e8], [1.4422236423779738e6, 3.634932839347066e8], [1.4416932598804247e6, 3.6293390956012034e8], [1.4416932601680132e6, 3.629339112514855e8], [1.4413903651090963e6, 3.626146992004348e8], [1.440898441497312e6, 3.620966515084654e8], [1.44063370316312e6, 3.618180450240035e8]], [[1.44063370316312e6, 3.618180450240035e8], [1.4371091336852624e6, 3.58114685560562e8], [1.4353599733522895e6, 3.562959470591519e8], [1.4301259073048644e6, 3.508672828177317e8], [1.430126192297467e6, 3.508689569997914e8], [1.4271527147635748e6, 3.478068099668279e8], [1.4223484728039696e6, 3.4289700914550203e8], [1.4197753453024474e6, 3.402849726579137e8]], [[1.4197753453024474e6, 3.402849726579137e8], [1.4170978436893995e6, 3.3757631518212056e8], [1.4157667815234126e6, 3.362406114012429e8], [1.4117815010445577e6, 3.3224932444061977e8], [1.411781629665202e6, 3.3225005283474624e8], [1.409514603551125e6, 3.299922725499926e8], [1.4058469161417175e6, 3.2636081677619493e8], [1.4041936584928837e6, 3.596560880065357e8]], [[1.4041936584928837e6, 3.596560880065357e8], [1.4002068522111953e6, 3.5544107491792464e8], [1.3982306734447824e6, 3.533769087289156e8], [1.3923196727611907e6, 3.472201920113437e8], [1.392320106953485e6, 3.4722275125825346e8], [1.38896513731579e6, 3.4375655713206637e8], [1.3835495729696958e6, 3.382110216492195e8], [1.392346034438945e6, 5.283540803371473e8]], [[1.392346034438945e6, 5.283540803371473e8], [1.3992579697188835e6, 5.38299598351258e8], [1.4027664458729837e6, 5.434485852026867e8], [1.4133498159009502e6, 5.590663610231189e8], [1.4133475204682425e6, 5.590486375911407e8], [1.4194715469840947e6, 5.682297267143642e8], [1.4295366318131613e6, 5.835043691275935e8], [1.435017945717589e6, 5.919359231343682e8]] … [[4.8174915947922905, -0.00041748374346406176], [4.813941693946178, -0.00041690751710937897], [4.812185940373991, -0.00041661939644175943], [4.806967483177135, -0.0004157492671444602], [4.80696763021225, -0.0004157493099052564], [4.804024190502375, -0.00041524956847468434], [4.799302825257436, -0.0004144335184640773], [4.796791884580036, -0.0004139920665538171]], [[4.796791884580036, -0.0004139920665538171], [4.774695839614329, -0.00040985732471044106], [4.764531887559454, -0.00040779819693557377], [4.73636081401846, -0.0004013538912927192], [4.73640389545698, -0.00040137009668173517], [4.722114837337192, -0.000397565339712544], [4.701857318236041, -0.0003912423665822756], [4.692435048979105, -0.00038774569984051854]], [[4.692435048979105, -0.00038774569984051854], [4.6900203994090495, -0.0003867686819820496], [4.688847723904249, -0.0003862812928778145], [4.685441806768877, -0.0003848053630083792], [4.685441998870195, -0.00038480560469651205], [4.683577214137617, -0.0003839567955449053], [4.68037584710524, -0.0007390735291239244], [4.6775177070245375, -0.0007340163739411559]], [[4.6775177070245375, -0.0007340163739411559], [4.675792350318102, -0.000732171804763511], [4.674938909974199, -0.0007312551275005454], [4.672405533970056, -0.0007285059924987808], [4.672405572562034, -0.0007285061586587338], [4.670978940781604, -0.0007269404204638329], [4.668691845499146, -0.0007244047160715273], [4.667476650066876, -0.0007230435084246167]], [[4.667476650066876, -0.0007230435084246167], [4.6560878799870355, -0.0007096930412060643], [4.650890135217316, -0.0007033074948774108], [4.636795895304432, -0.0006841243328911068], [4.636809606835987, -0.0006841908656937778], [4.629872877718026, -0.0006734018657280983], [4.620394940794003, -0.0006563130119859931], [4.616204666828993, -0.0006472510659072293]], [[4.616204666828993, -0.0006472510659072293], [4.610157354240708, -0.0006306330243723423], [4.608028607994891, -0.0006227494670556055], [4.604910199967608, -0.0005987614699745976], [4.604922183001228, -0.0005989177327961484], [4.605468236147452, -0.0005852529875530739], [4.610117201649354, -0.000563508689142959], [4.616186946512412, -0.0004245136345970848]], [[4.616186946512412, -0.0004245136345970848], [4.638086352185775, -0.0004012580822340074], [4.651783839798061, -0.0003900578138309979], [4.706842682897361, -0.00035269009236353144], [4.706647041339425, -0.0003534388866560834], [4.74793035517806, -0.00032963352920594574], [4.831318396699377, -0.00028855146959147785], [4.885744495606477, -0.0002591591646471962]], [[4.885744495606477, -0.0002591591646471962], [4.977500907584636, -0.00022645489375527385], [5.027499010862285, -0.00020993321208860778], [5.207503038829497, -0.00014745632418828626], [5.206388917565888, -0.00014978105095279654], [5.330203518272698, -0.00010430225161989172], [5.566059694214376, -3.820032175377679e-6], [5.714923429638314, 4.971394202330816e-5]], [[5.714923429638314, 4.971394202330816e-5], [5.836994654944483, 9.6789519721854e-5], [5.900116238012842, 0.00012039960207752649], [6.1089848358262895, 0.00020460866187692328], [6.1083445684839495, 0.00020281175039279804], [6.239998334988574, 0.0002594977364441019], [6.47292683525905, 0.0003609279270671878], [6.608072738811973, 0.0003014445838253575]], [[6.608072738811973, 0.0003014445838253575], [6.6880817648848545, 0.0003343708799002595], [6.728501789582377, 0.000350676956387476], [6.855027547245016, 0.00040389445290761475], [6.854919814196105, 0.0004035385568118919], [6.930164390288084, 0.00043613509127001134], [7.056852849407107, 0.0004915482204569136], [7.1275319494865395, 0.0005231154472036294]]], true, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}([42.15798020489517, 0.0016855266752388513], [41.8057271710196, 0.0016646435432803495], [6.608072738811973, 0.0003014445838253575], [6.6880817648848545, 0.0003343708799002595], [6.728501789582377, 0.000350676956387476], [6.855027547245016, 0.00040389445290761475], [6.854919814196105, 0.0004035385568118919], [6.930164390288084, 0.00043613509127001134], [7.056852849407107, 0.0004915482204569136], [7.1275319494865395, 0.0005231154472036294], [-1.8449762008932293e-8, 2.1880251934317909e-10], [42.11245847130423, 0.001682276432302955], [-4.376235364153816e-7, 8.147471457296872e-5], OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}(0.16666666666666666, 0.0625, 0.1875, 0.25, -0.75, -0.75, 3.75, -3.0, 0.5, 0.26895043731778423, -0.7084548104956269, 0.8658892128279884, 0.15462307371928363, 0.06184922948771345, -0.02947695035460993, 0.18500664893617022, 0.4802345261121857, -0.5337849069148937, -0.013090093085106383, 0.7861107753062541, 0.08783068783068783, 0.3006060606060606, 0.22777777777777777, 0.027777777777777776, 0.06218596218596219, 0.2938217338217338, 0.16666666666666666, 0.25, 0.5, 0.5, 0.6428571428571429, 0.875, -0.19894179894179895, 0.9115151515151515, -1.9777777777777779, -0.1111111111111111, 1.67013727013727, -0.2938217338217338, 1.892063492063492, -6.067155067155067, 7.282458282458283, -4.0195360195360195, -7.214545454545455, 20.676923076923078, -20.31142191142191, 7.14965034965035, 7.866666666666666, -18.78205128205128, 13.508547008547009, -2.3653846153846154, 2.0, -5.294871794871795, 4.534188034188034, -1.2115384615384615, -1.4924630924630924, 1.5785667324128863, 1.1958838881915805, -1.219801565955412, -7.051721611721612, 16.273203719357564, -11.978886071193763, 3.0512256973795435, 4.0, -8.384615384615385, 5.769230769230769, -1.3846153846153846))), true, 0, DiffEqBase.DEStats
Number of function 1 evaluations: 2467
Number of function 2 evaluations: 0
Number of W matrix evaluations: 0
Number of linear solves: 0
Number of Jacobians created: 0
Number of nonlinear solver iterations: 0
Number of nonlinear solver convergence failures: 0
Number of rootfind condition calls: 0
Number of accepted steps: 159
Number of rejected steps: 193, :Success), SciMLBase.ODESolution{Float64, 2, Vector{Vector{Float64}}, Nothing, Nothing, Vector{Float64}, Vector{Vector{Vector{Float64}}}, SciMLBase.ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Any}, SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}, SciMLBase.StandardODEProblem}, OwrenZen5, OrdinaryDiffEq.InterpolationData{SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}}, DiffEqBase.DEStats}([[0.0, 0.0], [1.4212359299306232, 1039.346802034851], [1.7831482023106768, 1304.0489058414848], [1.8462544526259506, 1348.4859443675073], [1.8737988405284067, 1366.0367861610482], [2.1478173921364223, 1537.7764331771307], [2.7763727064615513, 1912.5946912749641], [3.441054845630754, 2331.70192548455], [3.667487384192285, 2471.0768021175104], [3.716152665781894, 2516.148164989985] … [37.97161350559963, 0.0021970909454913216], [38.16515114121446, 0.0021559354139406594], [38.2506701930853, 0.0021375361967311303], [38.91613482889339, 0.0020056776112630367], [39.524720760733075, 0.001917223592176981], [39.820429398695346, 0.0018794508426945012], [41.01161098181574, 0.001768434143619089], [41.638209026203526, 0.0017320093198076598], [42.73597503092345, 0.0017084849485327939], [43.641090419723085, 0.0017702298848969232]], nothing, nothing, [0.0, 3.974942736825195e-7, 4.987136110733657e-7, 5.163644742815663e-7, 5.240759622312524e-7, 6.011908417281137e-7, 7.808473417023901e-7, 9.738950535971223e-7, 1.0401616718072588e-6, 1.0544156101109887e-6 … 0.9734854978654235, 1.0104164691387385, 1.0269487539923816, 1.1596397993847445, 1.2857019804241296, 1.347812907471113, 1.5959614582862995, 1.7198153516878334, 1.9150616802671563, 2.05], [[[0.0, 0.0]], [[3.575555157691905e6, 2.6148950812078986e9], [3.575524391643487e6, 2.6147803655230594e9], [3.5755090404441007e6, 2.6147231289312706e9], [3.575463113012265e6, 2.61455189286288e9], [3.5754631130122934e6, 2.614551892863525e9], [3.5754369540371727e6, 2.6144543654738574e9], [3.575478199980616e6, 2.6149574395659366e9], [3.5755013616693886e6, 2.615044674354517e9]], [[3.5755013616693886e6, 2.615044674354517e9], [3.5755092363090194e6, 2.615074329759254e9], [3.5755131757100034e6, 2.615089165407086e9], [3.575525002158684e6, 2.615133703359617e9], [3.575525002158683e6, 2.615133703359605e9], [3.575531765699519e6, 2.6151591746714363e9], [3.5755427650921936e6, 2.615200598203636e9], [3.575548692271782e6, 2.6152229199239826e9]], [[3.575548692271782e6, 2.6152229199239826e9], [3.5755500708429115e6, 2.6152281116182942e9], [3.5755507601917093e6, 2.615230707706885e9], [3.575552828488735e6, 2.6152384969149704e9], [3.575552828488733e6, 2.6152384969149694e9], [3.575554010542084e6, 2.615242948530924e9], [3.574525591303042e6, 2.2827955822383866e9], [3.573556543774016e6, 2.280449753886998e9]], [[3.573556543774016e6, 2.280449753886998e9], [3.5729921161248945e6, 2.278942716962327e9], [3.572710038116901e6, 2.278190065686433e9], [3.571863946002845e6, 2.2759328768366947e9], [3.5718639461929477e6, 2.2759328796626425e9], [3.571380650395112e6, 2.274644176209297e9], [3.570595582743541e6, 2.2725517754548135e9], [3.5701730014334545e6, 2.2714259878218827e9]], [[3.5701730014334545e6, 2.2714259878218827e9], [3.564543994671047e6, 2.2564450868795834e9], [3.561742997973956e6, 2.2490405480489235e9], [3.553353911203053e6, 2.2269001868807087e9], [3.5533541001957427e6, 2.226902994475301e9], [3.5485784475904475e6, 2.2143580266578255e9], [3.540846529605713e6, 2.1941449595518785e9], [3.536697539508665e6, 2.1833456949239225e9]], [[3.536697539508665e6, 2.1833456949239225e9], [3.5238500016882243e6, 2.150023273169447e9], [3.5174971495651836e6, 2.1338018231709657e9], [3.4985100132248537e6, 2.0854942477247152e9], [3.498512304155501e6, 2.0855275743537798e9], [3.4877551323586493e6, 2.0584386646558416e9], [3.470423599609374e6, 2.015303442634405e9], [3.462736629877333e6, 2.2226545478336544e9]], [[3.462736629877333e6, 2.2226545478336544e9], [3.4561455916496683e6, 2.205167121920709e9], [3.4528691616286114e6, 2.1965440621619096e9], [3.4430594571833285e6, 2.170776654615854e9], [3.443059779725902e6, 2.1707814194731164e9], [3.437479726607469e6, 2.1562055190771885e9], [3.428452407940958e6, 2.1327617641393108e9], [3.4236117270714324e6, 2.120255964143261e9]], [[3.4236117270714324e6, 2.120255964143261e9], [3.421400202010992e6, 2.1145550986961865e9], [3.420296615236811e6, 2.111718056730261e9], [3.4169881171553154e6, 2.1032185922197623e9], [3.4169881296153595e6, 2.1032187709726753e9], [3.4151005115633025e6, 2.0983789789841895e9], [3.4120377394475006e6, 2.090541202164274e9], [3.410390899003344e6, 2.0863344070484967e9]], [[3.410390899003344e6, 2.0863344070484967e9], [3.4112349301602114e6, 3.2531491100214167e9], [3.4119533562695473e6, 3.256351021326376e9], [3.4141103488182495e6, 3.26303228584096e9], [3.414108852054574e6, 3.2688904795201807e9], [3.415344046845842e6, 3.267376618341057e9], [3.4173502757248296e6, 3.276381208594661e9], [3.4184319762546737e6, 3.2796088427149973e9]] … [[5.586347136876583, -0.000717278261394034], [5.5292797715866495, -0.0007073276291805464], [5.502414566797117, -0.0007024710299682129], [5.424478069268465, -0.0006875611410219794], [5.424651264712898, -0.0006876117045609476], [5.382565349452407, -0.0006790497498474382], [5.3183797996676, -0.0006652778327889122], [5.285732958691645, -0.0006578974129424408]], [[5.285732958691645, -0.0006578974129424408], [5.27276320215264, -0.0006548856411465165], [5.265149359785294, -0.001185077135483754], [5.240516543945459, -0.001143404403533603], [5.240476161997792, -0.0012548302144940711], [5.226731148317303, -0.0011352635632578714], [5.2047449197463616, -0.0011383426098881045], [5.19315545425549, -0.0011277619096907296]], [[5.19315545425549, -0.0011277619096907296], [5.186297216816623, -0.001122754207162722], [5.18290036831583, -0.0011202802825216432], [5.172769167758596, -0.0011128755289196027], [5.172769621645498, -0.0011128768890531003], [5.167035042566153, -0.0011086786445596692], [5.157803292632508, -0.001101911339293364], [5.152875724097762, -0.0010982938164123316]], [[5.152875724097762, -0.0010982938164123316], [5.10159054059099, -0.0010600405087563079], [5.07788499365089, -0.0010426819454337662], [5.010317522100688, -0.0009911232517538964], [5.010526813938283, -0.0009917851957835333], [4.9749726313423634, -0.000963445543725829], [4.922461390096481, -0.0009209927517862043], [4.896611153937452, -0.0008991545321109669]], [[4.896611153937452, -0.0008991545321109669], [4.868673351084056, -0.0007225826864482318], [4.85662339850301, -0.0007159752987960614], [4.823662341375509, -0.0006821981897729571], [4.823852892768938, -0.0007111273738561747], [4.807439630021966, -0.000665940148251731], [4.785170895435023, -0.0006497634398041714], [4.775225811352989, -0.0006332515118615723]], [[4.775225811352989, -0.0006332515118615723], [4.769486098434714, -0.0006247261334327737], [4.7668873390009825, -0.0006205780709090381], [4.759997404045257, -0.0006080567264447395], [4.76000106027468, -0.0006080785323417824], [4.756718288360731, -0.0006009661342259802], [4.752420739958038, -0.0005895303973663297], [4.750640810602101, -0.0005834055944168857]], [[4.750640810602101, -0.0005834055944168857], [4.749460691092032, -0.0004979509496376249], [4.753344319191927, -0.0004889056044812849], [4.781646844862651, -0.0004480710180163128], [4.781748011272561, -0.00047221786377298416], [4.8099759944364715, -0.00042563296515196487], [4.877269668814706, -0.0003659529154576642], [4.926276861938418, -0.00034385324135912396]], [[4.926276861938418, -0.00034385324135912396], [4.964129715086716, -0.0003287279510203497], [4.984228229782799, -0.0003211950941284158], [5.052023780593616, -0.0002960436723880673], [5.051899682553123, -0.00029630561107929975], [5.095507332714736, -0.0002804024108315063], [5.174107814350255, -0.00025267385996389884], [5.2208120297177585, -0.0002363078124789546]], [[5.2208120297177585, -0.0002363078124789546], [5.330964418736347, -0.00020772462985308923], [5.389501304618284, -0.00019202882667869198], [5.594306006093714, -0.00013214097584597498], [5.593042095766714, -0.00013373318600182638], [5.729778633714493, -9.06043284244918e-5], [5.982776918507891, -8.704558440362966e-6], [6.14051503433198, 0.00020206160548305553]], [[6.14051503433198, 0.00020206160548305553], [6.306052483334173, 0.00027307329329545734], [6.391832910196756, 0.00030844952363309796], [6.679811718809638, 0.0004389478567427031], [6.678499259026317, 0.0004347026201037044], [6.862666298171835, 0.0005256398759979695], [7.191726918942393, 0.0006887335814806843], [7.387707726082924, 0.0008867527123629648]]], SciMLBase.ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Any}, SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}, SciMLBase.StandardODEProblem}(SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}(GasChromatographySimulator.odesystem_r!, LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, SciMLBase.DEFAULT_OBSERVED, nothing), [0.0, 0.0], (0.0, 2.05), Any[GasChromatographySimulator.Column(2.05, 0.000104, [0.000104], 1.04e-7, [1.04e-7], "FS5ms", "He"), GasChromatographySimulator.Program{GasChromatographySimulator.var"#gf#2"{String, Matrix{Float64}}}([0.0, 0.9200000000000003, 0.9100000000000007, 0.9199999999999986, 0.9199999999999995, 0.910000000000001, 0.9199999999999999, 0.9199999999999982, 0.9200000000000008, 0.9300000000000006 … 0.9199999999999875, 0.9100000000000108, 0.9200000000000017, 0.9099999999999966, 0.9200000000000017, 0.9099999999999966, 0.9200000000000017, 0.9099999999999966, 0.9099999999999966, 0.9200000000000017], [49.323, 48.954, 49.323, 49.077, 49.569, 49.446, 48.831, 49.323, 49.077, 49.077 … 63.099, 56.211, 51.414, 48.339, 46.74, 45.51, 44.895, 44.28, 43.911, 43.542], [354589.48, 354562.67000000004, 354589.48, 354571.61, 354607.32, 354598.4, 354553.72, 354589.48, 354571.61, 354571.61 … 355560.34, 355082.14, 354740.58, 354517.9, 354400.94, 354310.42000000004, 354264.98, 354219.43, 354192.04000000004, 354164.6], [230168.87, 230224.3, 230168.87, 230205.81999999998, 230131.96, 230150.41, 230242.79, 230168.87, 230205.81999999998, 230205.81999999998 … 228154.50999999998, 229148.40000000002, 229856.25, 230316.84999999998, 230558.51, 230745.38999999998, 230839.16, 230933.15000000002, 230989.65000000002, 231046.23], GasChromatographySimulator.var"#gf#2"{String, Matrix{Float64}}("outlet", [-2.829 0.0 2.05 -3.0; -2.46 0.0 2.05 -3.0; … ; -1.23 0.0 2.05 -3.0; -0.984 0.0 2.05 -3.0]), [-2.829 0.0 2.05 -3.0; -2.46 0.0 2.05 -3.0; … ; -1.23 0.0 2.05 -3.0; -0.984 0.0 2.05 -3.0], 2051×108 extrapolate(interpolate((0.0:0.001:2.05,::Vector{Float64}), ::Matrix{Float64}, Gridded(Linear())), Flat()) with element type Float64:
319.644 319.644 319.644 319.89 … 316.077 315.954 315.831 315.708
319.644 319.644 319.644 319.89 316.077 315.954 315.831 315.708
319.645 319.644 319.645 319.89 316.077 315.954 315.831 315.708
319.645 319.645 319.645 319.891 316.078 315.954 315.831 315.708
319.645 319.645 319.645 319.891 316.078 315.955 315.831 315.708
319.645 319.645 319.645 319.891 … 316.078 315.955 315.832 315.708
319.646 319.645 319.646 319.891 316.078 315.955 315.832 315.709
319.646 319.646 319.646 319.892 316.078 315.955 315.832 315.709
319.646 319.646 319.646 319.892 316.079 315.955 315.832 315.709
319.646 319.646 319.646 319.892 316.079 315.955 315.832 315.709
⋮ ⋱ ⋮
322.44 322.075 322.44 322.199 318.022 317.413 317.046 316.68
322.444 322.079 322.444 322.203 318.025 317.415 317.048 316.682
322.448 322.082 322.448 322.206 318.028 317.417 317.05 316.683
322.452 322.086 322.452 322.21 … 318.03 317.419 317.052 316.685
322.456 322.089 322.456 322.213 318.033 317.421 317.054 316.686
322.46 322.093 322.46 322.217 318.036 317.423 317.056 316.688
322.465 322.097 322.465 322.22 318.039 317.426 317.057 316.689
322.469 322.1 322.469 322.224 318.042 317.428 317.059 316.691
322.473 322.104 322.473 322.227 … 318.045 317.43 317.061 316.692, 108-element extrapolate(interpolate((::Vector{Float64},), ::Vector{Float64}, Gridded(Linear())), Flat()) with element type Float64:
354589.48
354562.67000000004
354589.48
354571.61
354607.32
354598.4
354553.72
354589.48
354571.61
354571.61
⋮
355082.14
354740.58
354517.9
354400.94
354310.42000000004
354264.98
354219.43
354192.04000000004
354164.6, 108-element extrapolate(interpolate((::Vector{Float64},), ::Vector{Float64}, Gridded(Linear())), Flat()) with element type Float64:
230168.87
230224.3
230168.87
230205.81999999998
230131.96
230150.41
230242.79
230168.87
230205.81999999998
230205.81999999998
⋮
229148.40000000002
229856.25
230316.84999999998
230558.51
230745.38999999998
230839.16
230933.15000000002
230989.65000000002
231046.23), GasChromatographySimulator.Substance("C23", "638-67-5", 566.26, 42.25, 188.99, 0.001, "Leppert2020b, alkane, alkanes", 7.693149436827684e-5, 0.0, 0.0), GasChromatographySimulator.Options(OwrenZen5(), 1.0e-6, 0.001, "inlet", true, false, "Blumberg", "Pressure")], Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}(), SciMLBase.StandardODEProblem()), OwrenZen5(), OrdinaryDiffEq.InterpolationData{SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}}(SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}(GasChromatographySimulator.odesystem_r!, LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, SciMLBase.DEFAULT_OBSERVED, nothing), [[0.0, 0.0], [1.4212359299306232, 1039.346802034851], [1.7831482023106768, 1304.0489058414848], [1.8462544526259506, 1348.4859443675073], [1.8737988405284067, 1366.0367861610482], [2.1478173921364223, 1537.7764331771307], [2.7763727064615513, 1912.5946912749641], [3.441054845630754, 2331.70192548455], [3.667487384192285, 2471.0768021175104], [3.716152665781894, 2516.148164989985] … [37.97161350559963, 0.0021970909454913216], [38.16515114121446, 0.0021559354139406594], [38.2506701930853, 0.0021375361967311303], [38.91613482889339, 0.0020056776112630367], [39.524720760733075, 0.001917223592176981], [39.820429398695346, 0.0018794508426945012], [41.01161098181574, 0.001768434143619089], [41.638209026203526, 0.0017320093198076598], [42.73597503092345, 0.0017084849485327939], [43.641090419723085, 0.0017702298848969232]], [0.0, 3.974942736825195e-7, 4.987136110733657e-7, 5.163644742815663e-7, 5.240759622312524e-7, 6.011908417281137e-7, 7.808473417023901e-7, 9.738950535971223e-7, 1.0401616718072588e-6, 1.0544156101109887e-6 … 0.9734854978654235, 1.0104164691387385, 1.0269487539923816, 1.1596397993847445, 1.2857019804241296, 1.347812907471113, 1.5959614582862995, 1.7198153516878334, 1.9150616802671563, 2.05], [[[0.0, 0.0]], [[3.575555157691905e6, 2.6148950812078986e9], [3.575524391643487e6, 2.6147803655230594e9], [3.5755090404441007e6, 2.6147231289312706e9], [3.575463113012265e6, 2.61455189286288e9], [3.5754631130122934e6, 2.614551892863525e9], [3.5754369540371727e6, 2.6144543654738574e9], [3.575478199980616e6, 2.6149574395659366e9], [3.5755013616693886e6, 2.615044674354517e9]], [[3.5755013616693886e6, 2.615044674354517e9], [3.5755092363090194e6, 2.615074329759254e9], [3.5755131757100034e6, 2.615089165407086e9], [3.575525002158684e6, 2.615133703359617e9], [3.575525002158683e6, 2.615133703359605e9], [3.575531765699519e6, 2.6151591746714363e9], [3.5755427650921936e6, 2.615200598203636e9], [3.575548692271782e6, 2.6152229199239826e9]], [[3.575548692271782e6, 2.6152229199239826e9], [3.5755500708429115e6, 2.6152281116182942e9], [3.5755507601917093e6, 2.615230707706885e9], [3.575552828488735e6, 2.6152384969149704e9], [3.575552828488733e6, 2.6152384969149694e9], [3.575554010542084e6, 2.615242948530924e9], [3.574525591303042e6, 2.2827955822383866e9], [3.573556543774016e6, 2.280449753886998e9]], [[3.573556543774016e6, 2.280449753886998e9], [3.5729921161248945e6, 2.278942716962327e9], [3.572710038116901e6, 2.278190065686433e9], [3.571863946002845e6, 2.2759328768366947e9], [3.5718639461929477e6, 2.2759328796626425e9], [3.571380650395112e6, 2.274644176209297e9], [3.570595582743541e6, 2.2725517754548135e9], [3.5701730014334545e6, 2.2714259878218827e9]], [[3.5701730014334545e6, 2.2714259878218827e9], [3.564543994671047e6, 2.2564450868795834e9], [3.561742997973956e6, 2.2490405480489235e9], [3.553353911203053e6, 2.2269001868807087e9], [3.5533541001957427e6, 2.226902994475301e9], [3.5485784475904475e6, 2.2143580266578255e9], [3.540846529605713e6, 2.1941449595518785e9], [3.536697539508665e6, 2.1833456949239225e9]], [[3.536697539508665e6, 2.1833456949239225e9], [3.5238500016882243e6, 2.150023273169447e9], [3.5174971495651836e6, 2.1338018231709657e9], [3.4985100132248537e6, 2.0854942477247152e9], [3.498512304155501e6, 2.0855275743537798e9], [3.4877551323586493e6, 2.0584386646558416e9], [3.470423599609374e6, 2.015303442634405e9], [3.462736629877333e6, 2.2226545478336544e9]], [[3.462736629877333e6, 2.2226545478336544e9], [3.4561455916496683e6, 2.205167121920709e9], [3.4528691616286114e6, 2.1965440621619096e9], [3.4430594571833285e6, 2.170776654615854e9], [3.443059779725902e6, 2.1707814194731164e9], [3.437479726607469e6, 2.1562055190771885e9], [3.428452407940958e6, 2.1327617641393108e9], [3.4236117270714324e6, 2.120255964143261e9]], [[3.4236117270714324e6, 2.120255964143261e9], [3.421400202010992e6, 2.1145550986961865e9], [3.420296615236811e6, 2.111718056730261e9], [3.4169881171553154e6, 2.1032185922197623e9], [3.4169881296153595e6, 2.1032187709726753e9], [3.4151005115633025e6, 2.0983789789841895e9], [3.4120377394475006e6, 2.090541202164274e9], [3.410390899003344e6, 2.0863344070484967e9]], [[3.410390899003344e6, 2.0863344070484967e9], [3.4112349301602114e6, 3.2531491100214167e9], [3.4119533562695473e6, 3.256351021326376e9], [3.4141103488182495e6, 3.26303228584096e9], [3.414108852054574e6, 3.2688904795201807e9], [3.415344046845842e6, 3.267376618341057e9], [3.4173502757248296e6, 3.276381208594661e9], [3.4184319762546737e6, 3.2796088427149973e9]] … [[5.586347136876583, -0.000717278261394034], [5.5292797715866495, -0.0007073276291805464], [5.502414566797117, -0.0007024710299682129], [5.424478069268465, -0.0006875611410219794], [5.424651264712898, -0.0006876117045609476], [5.382565349452407, -0.0006790497498474382], [5.3183797996676, -0.0006652778327889122], [5.285732958691645, -0.0006578974129424408]], [[5.285732958691645, -0.0006578974129424408], [5.27276320215264, -0.0006548856411465165], [5.265149359785294, -0.001185077135483754], [5.240516543945459, -0.001143404403533603], [5.240476161997792, -0.0012548302144940711], [5.226731148317303, -0.0011352635632578714], [5.2047449197463616, -0.0011383426098881045], [5.19315545425549, -0.0011277619096907296]], [[5.19315545425549, -0.0011277619096907296], [5.186297216816623, -0.001122754207162722], [5.18290036831583, -0.0011202802825216432], [5.172769167758596, -0.0011128755289196027], [5.172769621645498, -0.0011128768890531003], [5.167035042566153, -0.0011086786445596692], [5.157803292632508, -0.001101911339293364], [5.152875724097762, -0.0010982938164123316]], [[5.152875724097762, -0.0010982938164123316], [5.10159054059099, -0.0010600405087563079], [5.07788499365089, -0.0010426819454337662], [5.010317522100688, -0.0009911232517538964], [5.010526813938283, -0.0009917851957835333], [4.9749726313423634, -0.000963445543725829], [4.922461390096481, -0.0009209927517862043], [4.896611153937452, -0.0008991545321109669]], [[4.896611153937452, -0.0008991545321109669], [4.868673351084056, -0.0007225826864482318], [4.85662339850301, -0.0007159752987960614], [4.823662341375509, -0.0006821981897729571], [4.823852892768938, -0.0007111273738561747], [4.807439630021966, -0.000665940148251731], [4.785170895435023, -0.0006497634398041714], [4.775225811352989, -0.0006332515118615723]], [[4.775225811352989, -0.0006332515118615723], [4.769486098434714, -0.0006247261334327737], [4.7668873390009825, -0.0006205780709090381], [4.759997404045257, -0.0006080567264447395], [4.76000106027468, -0.0006080785323417824], [4.756718288360731, -0.0006009661342259802], [4.752420739958038, -0.0005895303973663297], [4.750640810602101, -0.0005834055944168857]], [[4.750640810602101, -0.0005834055944168857], [4.749460691092032, -0.0004979509496376249], [4.753344319191927, -0.0004889056044812849], [4.781646844862651, -0.0004480710180163128], [4.781748011272561, -0.00047221786377298416], [4.8099759944364715, -0.00042563296515196487], [4.877269668814706, -0.0003659529154576642], [4.926276861938418, -0.00034385324135912396]], [[4.926276861938418, -0.00034385324135912396], [4.964129715086716, -0.0003287279510203497], [4.984228229782799, -0.0003211950941284158], [5.052023780593616, -0.0002960436723880673], [5.051899682553123, -0.00029630561107929975], [5.095507332714736, -0.0002804024108315063], [5.174107814350255, -0.00025267385996389884], [5.2208120297177585, -0.0002363078124789546]], [[5.2208120297177585, -0.0002363078124789546], [5.330964418736347, -0.00020772462985308923], [5.389501304618284, -0.00019202882667869198], [5.594306006093714, -0.00013214097584597498], [5.593042095766714, -0.00013373318600182638], [5.729778633714493, -9.06043284244918e-5], [5.982776918507891, -8.704558440362966e-6], [6.14051503433198, 0.00020206160548305553]], [[6.14051503433198, 0.00020206160548305553], [6.306052483334173, 0.00027307329329545734], [6.391832910196756, 0.00030844952363309796], [6.679811718809638, 0.0004389478567427031], [6.678499259026317, 0.0004347026201037044], [6.862666298171835, 0.0005256398759979695], [7.191726918942393, 0.0006887335814806843], [7.387707726082924, 0.0008867527123629648]]], true, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}([43.641090419723085, 0.0017702298848969232], [42.73597503092345, 0.0017084849485327939], [6.14051503433198, 0.00020206160548305553], [6.306052483334173, 0.00027307329329545734], [6.391832910196756, 0.00030844952363309796], [6.679811718809638, 0.0004389478567427031], [6.678499259026317, 0.0004347026201037044], [6.862666298171835, 0.0005256398759979695], [7.191726918942393, 0.0006887335814806843], [7.387707726082924, 0.0008867527123629648], [-1.1082429199853402e-5, 5.688960216207367e-9], [43.51821893403796, 0.0017578601559216157], [-0.0002539390091828631, 0.002053605820666051], OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}(0.16666666666666666, 0.0625, 0.1875, 0.25, -0.75, -0.75, 3.75, -3.0, 0.5, 0.26895043731778423, -0.7084548104956269, 0.8658892128279884, 0.15462307371928363, 0.06184922948771345, -0.02947695035460993, 0.18500664893617022, 0.4802345261121857, -0.5337849069148937, -0.013090093085106383, 0.7861107753062541, 0.08783068783068783, 0.3006060606060606, 0.22777777777777777, 0.027777777777777776, 0.06218596218596219, 0.2938217338217338, 0.16666666666666666, 0.25, 0.5, 0.5, 0.6428571428571429, 0.875, -0.19894179894179895, 0.9115151515151515, -1.9777777777777779, -0.1111111111111111, 1.67013727013727, -0.2938217338217338, 1.892063492063492, -6.067155067155067, 7.282458282458283, -4.0195360195360195, -7.214545454545455, 20.676923076923078, -20.31142191142191, 7.14965034965035, 7.866666666666666, -18.78205128205128, 13.508547008547009, -2.3653846153846154, 2.0, -5.294871794871795, 4.534188034188034, -1.2115384615384615, -1.4924630924630924, 1.5785667324128863, 1.1958838881915805, -1.219801565955412, -7.051721611721612, 16.273203719357564, -11.978886071193763, 3.0512256973795435, 4.0, -8.384615384615385, 5.769230769230769, -1.3846153846153846))), true, 0, DiffEqBase.DEStats
Number of function 1 evaluations: 2481
Number of function 2 evaluations: 0
Number of W matrix evaluations: 0
Number of linear solves: 0
Number of Jacobians created: 0
Number of nonlinear solver iterations: 0
Number of nonlinear solver convergence failures: 0
Number of rootfind condition calls: 0
Number of accepted steps: 168
Number of rejected steps: 186, :Success), SciMLBase.ODESolution{Float64, 2, Vector{Vector{Float64}}, Nothing, Nothing, Vector{Float64}, Vector{Vector{Vector{Float64}}}, SciMLBase.ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Any}, SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}, SciMLBase.StandardODEProblem}, OwrenZen5, OrdinaryDiffEq.InterpolationData{SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}}, DiffEqBase.DEStats}([[0.0, 0.0], [1.418597030101833, 2408.760162657313], [1.7771575098848265, 3017.67488209088], [1.839303236784853, 3119.173182435829], [1.8663798542347914, 3159.070659632959], [2.1357229132640865, 3549.336629572419], [2.749501623395128, 4394.970624867839], [2.947550528732439, 4684.935201660974], [3.0334537852025494, 4810.892518450609], [3.524911540792067, 5520.016255832142] … [39.07125951426188, 0.002316159556768613], [39.28651114049571, 0.0022708818248093087], [40.012071029512406, 0.002136138315158029], [40.31649733305923, 0.002089103886636809], [40.994496048511834, 0.0019950771788974577], [41.32429350521078, 0.0019556518186771054], [43.141836851597766, 0.001813095348855193], [43.83755829880447, 0.0017977987795739123], [44.71279834473881, 0.0018266556694881717], [45.10728615687947, 0.0018595227815977925]], nothing, nothing, [0.0, 1.7434471917019264e-7, 2.1841113313804362e-7, 2.2604879077931297e-7, 2.293791306881726e-7, 2.6268252977676906e-7, 3.3977477022242023e-7, 3.6496638002967116e-7, 3.7592063576262116e-7, 4.389112241354931e-7 … 0.9395082932338403, 0.9790691564844329, 1.1177909994676534, 1.1780129132197679, 1.3148850166613302, 1.3821380847169489, 1.7398863192888006, 1.8616303883453718, 1.9964047584132703, 2.05], [[[0.0, 0.0]], [[8.136889563273979e6, 1.3816863453270496e10], [8.1368197315308275e6, 1.3816257809404402e10], [8.136784887545413e6, 1.3815955623315987e10], [8.1366806405673055e6, 1.3815051548895845e10], [8.136680640567371e6, 1.3815051548899237e10], [8.136621263474788e6, 1.381453662230805e10], [8.136714020230649e6, 1.381718591684888e10], [8.1367666706435485e6, 1.3817646744892578e10]], [[8.1367666706435485e6, 1.3817646744892578e10], [8.136784438220724e6, 1.3817802240301514e10], [8.1367933266754355e6, 1.3817880029293566e10], [8.13682001052818e6, 1.3818113557406498e10], [8.136820010528183e6, 1.3818113557406448e10], [8.136835270933038e6, 1.3818247111443453e10], [8.136860088460624e6, 1.3818464306420052e10], [8.136873461676739e6, 1.3818581344557293e10]], [[8.136873461676739e6, 1.3818581344557293e10], [8.136876553153082e6, 1.3818608400175005e10], [8.136878099031425e6, 1.3818621929223654e10], [8.136882737221353e6, 1.381866252120604e10], [8.136882737221351e6, 1.3818662521206038e10], [8.136885387990638e6, 1.3818685719909336e10], [8.13644510184035e6, 1.2016711297375095e10], [8.134199393860961e6, 1.2004166845745758e10]], [[8.134199393860961e6, 1.2004166845745758e10], [8.1328943293777695e6, 1.1996101055224815e10], [8.132242115934816e6, 1.1992072873675104e10], [8.130285808113942e6, 1.1979992481604523e10], [8.130285808567676e6, 1.1979992497215446e10], [8.129168353317078e6, 1.1973095494346737e10], [8.127353164186678e6, 1.1961897331828465e10], [8.126376100481944e6, 1.1955872385861578e10]], [[8.126376100481944e6, 1.1955872385861578e10], [8.1133612638712125e6, 1.1875700474158358e10], [8.106885546997281e6, 1.1836081439915428e10], [8.087490962711481e6, 1.1717621716546364e10], [8.087491413585312e6, 1.1717637224162954e10], [8.076451263952076e6, 1.1650525056452574e10], [8.058577911396905e6, 1.1542405018777433e10], [8.048987448204047e6, 1.1484646357809221e10]], [[8.048987448204047e6, 1.1484646357809221e10], [8.019480713407732e6, 1.1307576167912823e10], [8.004891605578935e6, 1.1221398845793133e10], [7.961289354832548e6, 1.0964775627347458e10], [7.961294713231336e6, 1.096495603894678e10], [7.93659345184178e6, 1.0821073887331898e10], [7.896798515296389e6, 1.0592005241408876e10], [7.875539497547708e6, 1.0470851310939243e10]], [[7.875539497547708e6, 1.0470851310939243e10], [7.8708684096858855e6, 1.1675615233259739e10], [7.868571925193319e6, 1.1660627518840483e10], [7.861686598925508e6, 1.1620041570847752e10], [7.861686865122225e6, 1.1611383813102152e10], [7.857757722806096e6, 1.1596162851184052e10], [7.851382006409991e6, 1.1554630364318665e10], [7.847953271071659e6, 1.1534733752268604e10]], [[7.847953271071659e6, 1.1534733752268604e10], [7.84596652614573e6, 1.1522624754353798e10], [7.844973919445644e6, 1.1516581391726643e10], [7.8419968974167295e6, 1.1498461069888908e10], [7.841996899135714e6, 1.1498461128097439e10], [7.840296787264909e6, 1.1488120973080036e10], [7.837535728035986e6, 1.147134057011868e10], [7.836049833414318e6, 1.1462316350935614e10]], [[7.836049833414318e6, 1.1462316350935614e10], [7.824668323863344e6, 1.1393264627401672e10], [7.81900271566548e6, 1.1359102656035225e10], [7.802031769558343e6, 1.1256926841849762e10], [7.8020320938379755e6, 1.125693779699273e10], [7.792368164929886e6, 1.1199004475010452e10], [7.776717366919218e6, 1.110559278720775e10], [7.768316767889001e6, 1.1055653818323074e10]] … [[5.769823580778077, -0.0015934268252237], [5.7188157446722805, -0.0015527283203906], [5.694448506880151, -0.0015337558754039983], [5.623006172926834, -0.0014774634707319574], [5.623107471931508, -0.001477813850207893], [5.583897746290927, -0.001446790063026936], [5.5258383673545675, -0.0011945494357481511], [5.496552997749449, -0.00118037410208804]], [[5.496552997749449, -0.00118037410208804], [5.477476084690125, -0.0011680691776484843], [5.468145381774096, -0.0011620893440340858], [5.440513864084595, -0.0011442286537600055], [5.440521310286841, -0.0011442481302164596], [5.4250690295266, -0.0011342119729708384], [5.400498869137573, -0.0011182202984780678], [5.387534047184911, -0.001109747693809862]], [[5.387534047184911, -0.001109747693809862], [5.328817436945795, -0.0010706945822998274], [5.301729117954443, -0.0010529884679564257], [5.224468875133807, -0.0010002728305028583], [5.224734305706279, -0.0010009942874638937], [5.1840666077856286, -0.000971943054151846], [5.125126499234694, -0.0008210092306736058], [5.0976585296780135, -0.0008082799907872711]], [[5.0976585296780135, -0.0008082799907872711], [5.082527366876616, -0.0007989167746122509], [5.075264062996454, -0.0007943868239122616], [5.054193966167029, -0.0007808105454580306], [5.054204208555925, -0.000780835003155365], [5.042748200510897, -0.0007731940816246732], [5.025065446813014, -0.0007610269058283682], [5.016010066970336, -0.0007545726788835815]], [[5.016010066970336, -0.0007545726788835815], [4.990366592593319, -0.0007351317354198522], [4.9789770979951475, -0.0007260748215316983], [4.9486811468322545, -0.0006987221478822756], [4.94876720304206, -0.0006989807826059051], [4.934430952014235, -0.0006835894010723859], [4.9170362187069445, -0.0006172155693454332], [4.910467770839312, -0.0006075637486737989]], [[4.910467770839312, -0.0006075637486737989], [4.907100253788903, -0.0006003611046463534], [4.905718177434837, -0.0005968507746962246], [4.90267116897719, -0.0005861947763076566], [4.902673562430002, -0.0005862163467857647], [4.90170621258209, -0.000580127213957525], [4.901363305240892, -0.0005702864826367016], [4.901814149781458, -0.0005649858720020847]], [[4.901814149781458, -0.0005649858720020847], [4.9185510937460455, -0.0005255597752246498], [4.93577556140597, -0.0004595235255351838], [5.033206349200969, -0.00043475076283104467], [5.031928794121041, -0.00034629746052985445], [5.118279280703747, -0.00040486452125295053], [5.315271822421768, -0.0002617273503665962], [5.458578910291255, -0.00021650616154245171]], [[5.458578910291255, -0.00021650616154245171], [5.533948198743416, -0.00018817167122667103], [5.573191958144216, -0.00017398408301434092], [5.703353454659493, -0.00012492197133152092], [5.7030402808036476, -0.00012567586397722267], [5.785310110702865, -9.360249312566913e-5], [5.930728264243387, -5.6369322953801846e-5], [6.016424422436979, -1.5399215952950976e-5]], [[6.016424422436979, -1.5399215952950976e-5], [6.15479309478471, 5.160472159560642e-5], [6.226858244384935, 8.504490771328761e-5], [6.469608255792593, 0.00020577061189376144], [6.468605439588025, 0.00020252685043814413], [6.624486719758369, 0.00028511019129657525], [6.9041483736106395, 0.0004073032000506535], [7.069504849265647, 0.0004800089298884324]], [[7.069504849265647, 0.0004800089298884324], [7.162020685620293, 0.0005216311958081681], [7.208763124008277, 0.0005421971541313634], [7.355374000304814, 0.000609630966187105], [7.355232755402161, 0.0006091132943168752], [7.4425743876093815, 0.0006505665601780264], [7.589829649149595, 0.0007210605428619142], [7.6721066548709365, 0.000761309873767828]]], SciMLBase.ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Any}, SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}, SciMLBase.StandardODEProblem}(SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}(GasChromatographySimulator.odesystem_r!, LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, SciMLBase.DEFAULT_OBSERVED, nothing), [0.0, 0.0], (0.0, 2.05), Any[GasChromatographySimulator.Column(2.05, 0.000104, [0.000104], 1.04e-7, [1.04e-7], "FS5ms", "He"), GasChromatographySimulator.Program{GasChromatographySimulator.var"#gf#2"{String, Matrix{Float64}}}([0.0, 0.9200000000000003, 0.9100000000000007, 0.9199999999999986, 0.9199999999999995, 0.910000000000001, 0.9199999999999999, 0.9199999999999982, 0.9200000000000008, 0.9300000000000006 … 0.9199999999999875, 0.9100000000000108, 0.9200000000000017, 0.9099999999999966, 0.9200000000000017, 0.9099999999999966, 0.9200000000000017, 0.9099999999999966, 0.9099999999999966, 0.9200000000000017], [49.323, 48.954, 49.323, 49.077, 49.569, 49.446, 48.831, 49.323, 49.077, 49.077 … 63.099, 56.211, 51.414, 48.339, 46.74, 45.51, 44.895, 44.28, 43.911, 43.542], [354589.48, 354562.67000000004, 354589.48, 354571.61, 354607.32, 354598.4, 354553.72, 354589.48, 354571.61, 354571.61 … 355560.34, 355082.14, 354740.58, 354517.9, 354400.94, 354310.42000000004, 354264.98, 354219.43, 354192.04000000004, 354164.6], [230168.87, 230224.3, 230168.87, 230205.81999999998, 230131.96, 230150.41, 230242.79, 230168.87, 230205.81999999998, 230205.81999999998 … 228154.50999999998, 229148.40000000002, 229856.25, 230316.84999999998, 230558.51, 230745.38999999998, 230839.16, 230933.15000000002, 230989.65000000002, 231046.23], GasChromatographySimulator.var"#gf#2"{String, Matrix{Float64}}("outlet", [-2.829 0.0 2.05 -3.0; -2.46 0.0 2.05 -3.0; … ; -1.23 0.0 2.05 -3.0; -0.984 0.0 2.05 -3.0]), [-2.829 0.0 2.05 -3.0; -2.46 0.0 2.05 -3.0; … ; -1.23 0.0 2.05 -3.0; -0.984 0.0 2.05 -3.0], 2051×108 extrapolate(interpolate((0.0:0.001:2.05,::Vector{Float64}), ::Matrix{Float64}, Gridded(Linear())), Flat()) with element type Float64:
319.644 319.644 319.644 319.89 … 316.077 315.954 315.831 315.708
319.644 319.644 319.644 319.89 316.077 315.954 315.831 315.708
319.645 319.644 319.645 319.89 316.077 315.954 315.831 315.708
319.645 319.645 319.645 319.891 316.078 315.954 315.831 315.708
319.645 319.645 319.645 319.891 316.078 315.955 315.831 315.708
319.645 319.645 319.645 319.891 … 316.078 315.955 315.832 315.708
319.646 319.645 319.646 319.891 316.078 315.955 315.832 315.709
319.646 319.646 319.646 319.892 316.078 315.955 315.832 315.709
319.646 319.646 319.646 319.892 316.079 315.955 315.832 315.709
319.646 319.646 319.646 319.892 316.079 315.955 315.832 315.709
⋮ ⋱ ⋮
322.44 322.075 322.44 322.199 318.022 317.413 317.046 316.68
322.444 322.079 322.444 322.203 318.025 317.415 317.048 316.682
322.448 322.082 322.448 322.206 318.028 317.417 317.05 316.683
322.452 322.086 322.452 322.21 … 318.03 317.419 317.052 316.685
322.456 322.089 322.456 322.213 318.033 317.421 317.054 316.686
322.46 322.093 322.46 322.217 318.036 317.423 317.056 316.688
322.465 322.097 322.465 322.22 318.039 317.426 317.057 316.689
322.469 322.1 322.469 322.224 318.042 317.428 317.059 316.691
322.473 322.104 322.473 322.227 … 318.045 317.43 317.061 316.692, 108-element extrapolate(interpolate((::Vector{Float64},), ::Vector{Float64}, Gridded(Linear())), Flat()) with element type Float64:
354589.48
354562.67000000004
354589.48
354571.61
354607.32
354598.4
354553.72
354589.48
354571.61
354571.61
⋮
355082.14
354740.58
354517.9
354400.94
354310.42000000004
354264.98
354219.43
354192.04000000004
354164.6, 108-element extrapolate(interpolate((::Vector{Float64},), ::Vector{Float64}, Gridded(Linear())), Flat()) with element type Float64:
230168.87
230224.3
230168.87
230205.81999999998
230131.96
230150.41
230242.79
230168.87
230205.81999999998
230205.81999999998
⋮
229148.40000000002
229856.25
230316.84999999998
230558.51
230745.38999999998
230839.16
230933.15000000002
230989.65000000002
231046.23), GasChromatographySimulator.Substance("C24", "646-31-1", 575.2, 42.21, 188.53, 0.001, "Leppert2020b, alkane, alkanes", 7.518755251713027e-5, 0.0, 0.0), GasChromatographySimulator.Options(OwrenZen5(), 1.0e-6, 0.001, "inlet", true, false, "Blumberg", "Pressure")], Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}(), SciMLBase.StandardODEProblem()), OwrenZen5(), OrdinaryDiffEq.InterpolationData{SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}}(SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}(GasChromatographySimulator.odesystem_r!, LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, SciMLBase.DEFAULT_OBSERVED, nothing), [[0.0, 0.0], [1.418597030101833, 2408.760162657313], [1.7771575098848265, 3017.67488209088], [1.839303236784853, 3119.173182435829], [1.8663798542347914, 3159.070659632959], [2.1357229132640865, 3549.336629572419], [2.749501623395128, 4394.970624867839], [2.947550528732439, 4684.935201660974], [3.0334537852025494, 4810.892518450609], [3.524911540792067, 5520.016255832142] … [39.07125951426188, 0.002316159556768613], [39.28651114049571, 0.0022708818248093087], [40.012071029512406, 0.002136138315158029], [40.31649733305923, 0.002089103886636809], [40.994496048511834, 0.0019950771788974577], [41.32429350521078, 0.0019556518186771054], [43.141836851597766, 0.001813095348855193], [43.83755829880447, 0.0017977987795739123], [44.71279834473881, 0.0018266556694881717], [45.10728615687947, 0.0018595227815977925]], [0.0, 1.7434471917019264e-7, 2.1841113313804362e-7, 2.2604879077931297e-7, 2.293791306881726e-7, 2.6268252977676906e-7, 3.3977477022242023e-7, 3.6496638002967116e-7, 3.7592063576262116e-7, 4.389112241354931e-7 … 0.9395082932338403, 0.9790691564844329, 1.1177909994676534, 1.1780129132197679, 1.3148850166613302, 1.3821380847169489, 1.7398863192888006, 1.8616303883453718, 1.9964047584132703, 2.05], [[[0.0, 0.0]], [[8.136889563273979e6, 1.3816863453270496e10], [8.1368197315308275e6, 1.3816257809404402e10], [8.136784887545413e6, 1.3815955623315987e10], [8.1366806405673055e6, 1.3815051548895845e10], [8.136680640567371e6, 1.3815051548899237e10], [8.136621263474788e6, 1.381453662230805e10], [8.136714020230649e6, 1.381718591684888e10], [8.1367666706435485e6, 1.3817646744892578e10]], [[8.1367666706435485e6, 1.3817646744892578e10], [8.136784438220724e6, 1.3817802240301514e10], [8.1367933266754355e6, 1.3817880029293566e10], [8.13682001052818e6, 1.3818113557406498e10], [8.136820010528183e6, 1.3818113557406448e10], [8.136835270933038e6, 1.3818247111443453e10], [8.136860088460624e6, 1.3818464306420052e10], [8.136873461676739e6, 1.3818581344557293e10]], [[8.136873461676739e6, 1.3818581344557293e10], [8.136876553153082e6, 1.3818608400175005e10], [8.136878099031425e6, 1.3818621929223654e10], [8.136882737221353e6, 1.381866252120604e10], [8.136882737221351e6, 1.3818662521206038e10], [8.136885387990638e6, 1.3818685719909336e10], [8.13644510184035e6, 1.2016711297375095e10], [8.134199393860961e6, 1.2004166845745758e10]], [[8.134199393860961e6, 1.2004166845745758e10], [8.1328943293777695e6, 1.1996101055224815e10], [8.132242115934816e6, 1.1992072873675104e10], [8.130285808113942e6, 1.1979992481604523e10], [8.130285808567676e6, 1.1979992497215446e10], [8.129168353317078e6, 1.1973095494346737e10], [8.127353164186678e6, 1.1961897331828465e10], [8.126376100481944e6, 1.1955872385861578e10]], [[8.126376100481944e6, 1.1955872385861578e10], [8.1133612638712125e6, 1.1875700474158358e10], [8.106885546997281e6, 1.1836081439915428e10], [8.087490962711481e6, 1.1717621716546364e10], [8.087491413585312e6, 1.1717637224162954e10], [8.076451263952076e6, 1.1650525056452574e10], [8.058577911396905e6, 1.1542405018777433e10], [8.048987448204047e6, 1.1484646357809221e10]], [[8.048987448204047e6, 1.1484646357809221e10], [8.019480713407732e6, 1.1307576167912823e10], [8.004891605578935e6, 1.1221398845793133e10], [7.961289354832548e6, 1.0964775627347458e10], [7.961294713231336e6, 1.096495603894678e10], [7.93659345184178e6, 1.0821073887331898e10], [7.896798515296389e6, 1.0592005241408876e10], [7.875539497547708e6, 1.0470851310939243e10]], [[7.875539497547708e6, 1.0470851310939243e10], [7.8708684096858855e6, 1.1675615233259739e10], [7.868571925193319e6, 1.1660627518840483e10], [7.861686598925508e6, 1.1620041570847752e10], [7.861686865122225e6, 1.1611383813102152e10], [7.857757722806096e6, 1.1596162851184052e10], [7.851382006409991e6, 1.1554630364318665e10], [7.847953271071659e6, 1.1534733752268604e10]], [[7.847953271071659e6, 1.1534733752268604e10], [7.84596652614573e6, 1.1522624754353798e10], [7.844973919445644e6, 1.1516581391726643e10], [7.8419968974167295e6, 1.1498461069888908e10], [7.841996899135714e6, 1.1498461128097439e10], [7.840296787264909e6, 1.1488120973080036e10], [7.837535728035986e6, 1.147134057011868e10], [7.836049833414318e6, 1.1462316350935614e10]], [[7.836049833414318e6, 1.1462316350935614e10], [7.824668323863344e6, 1.1393264627401672e10], [7.81900271566548e6, 1.1359102656035225e10], [7.802031769558343e6, 1.1256926841849762e10], [7.8020320938379755e6, 1.125693779699273e10], [7.792368164929886e6, 1.1199004475010452e10], [7.776717366919218e6, 1.110559278720775e10], [7.768316767889001e6, 1.1055653818323074e10]] … [[5.769823580778077, -0.0015934268252237], [5.7188157446722805, -0.0015527283203906], [5.694448506880151, -0.0015337558754039983], [5.623006172926834, -0.0014774634707319574], [5.623107471931508, -0.001477813850207893], [5.583897746290927, -0.001446790063026936], [5.5258383673545675, -0.0011945494357481511], [5.496552997749449, -0.00118037410208804]], [[5.496552997749449, -0.00118037410208804], [5.477476084690125, -0.0011680691776484843], [5.468145381774096, -0.0011620893440340858], [5.440513864084595, -0.0011442286537600055], [5.440521310286841, -0.0011442481302164596], [5.4250690295266, -0.0011342119729708384], [5.400498869137573, -0.0011182202984780678], [5.387534047184911, -0.001109747693809862]], [[5.387534047184911, -0.001109747693809862], [5.328817436945795, -0.0010706945822998274], [5.301729117954443, -0.0010529884679564257], [5.224468875133807, -0.0010002728305028583], [5.224734305706279, -0.0010009942874638937], [5.1840666077856286, -0.000971943054151846], [5.125126499234694, -0.0008210092306736058], [5.0976585296780135, -0.0008082799907872711]], [[5.0976585296780135, -0.0008082799907872711], [5.082527366876616, -0.0007989167746122509], [5.075264062996454, -0.0007943868239122616], [5.054193966167029, -0.0007808105454580306], [5.054204208555925, -0.000780835003155365], [5.042748200510897, -0.0007731940816246732], [5.025065446813014, -0.0007610269058283682], [5.016010066970336, -0.0007545726788835815]], [[5.016010066970336, -0.0007545726788835815], [4.990366592593319, -0.0007351317354198522], [4.9789770979951475, -0.0007260748215316983], [4.9486811468322545, -0.0006987221478822756], [4.94876720304206, -0.0006989807826059051], [4.934430952014235, -0.0006835894010723859], [4.9170362187069445, -0.0006172155693454332], [4.910467770839312, -0.0006075637486737989]], [[4.910467770839312, -0.0006075637486737989], [4.907100253788903, -0.0006003611046463534], [4.905718177434837, -0.0005968507746962246], [4.90267116897719, -0.0005861947763076566], [4.902673562430002, -0.0005862163467857647], [4.90170621258209, -0.000580127213957525], [4.901363305240892, -0.0005702864826367016], [4.901814149781458, -0.0005649858720020847]], [[4.901814149781458, -0.0005649858720020847], [4.9185510937460455, -0.0005255597752246498], [4.93577556140597, -0.0004595235255351838], [5.033206349200969, -0.00043475076283104467], [5.031928794121041, -0.00034629746052985445], [5.118279280703747, -0.00040486452125295053], [5.315271822421768, -0.0002617273503665962], [5.458578910291255, -0.00021650616154245171]], [[5.458578910291255, -0.00021650616154245171], [5.533948198743416, -0.00018817167122667103], [5.573191958144216, -0.00017398408301434092], [5.703353454659493, -0.00012492197133152092], [5.7030402808036476, -0.00012567586397722267], [5.785310110702865, -9.360249312566913e-5], [5.930728264243387, -5.6369322953801846e-5], [6.016424422436979, -1.5399215952950976e-5]], [[6.016424422436979, -1.5399215952950976e-5], [6.15479309478471, 5.160472159560642e-5], [6.226858244384935, 8.504490771328761e-5], [6.469608255792593, 0.00020577061189376144], [6.468605439588025, 0.00020252685043814413], [6.624486719758369, 0.00028511019129657525], [6.9041483736106395, 0.0004073032000506535], [7.069504849265647, 0.0004800089298884324]], [[7.069504849265647, 0.0004800089298884324], [7.162020685620293, 0.0005216311958081681], [7.208763124008277, 0.0005421971541313634], [7.355374000304814, 0.000609630966187105], [7.355232755402161, 0.0006091132943168752], [7.4425743876093815, 0.0006505665601780264], [7.589829649149595, 0.0007210605428619142], [7.6721066548709365, 0.000761309873767828]]], true, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}([45.10728615687947, 0.0018595227815977925], [44.71279834473881, 0.0018266556694881717], [7.069504849265647, 0.0004800089298884324], [7.162020685620293, 0.0005216311958081681], [7.208763124008277, 0.0005421971541313634], [7.355374000304814, 0.000609630966187105], [7.355232755402161, 0.0006091132943168752], [7.4425743876093815, 0.0006505665601780264], [7.589829649149595, 0.0007210605428619142], [7.6721066548709365, 0.000761309873767828], [-1.3755291379098e-7, 2.920163024355056e-10], [45.05616968881515, 0.0018545664665708867], [-3.04939348200002e-6, 0.00010212064205774155], OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}(0.16666666666666666, 0.0625, 0.1875, 0.25, -0.75, -0.75, 3.75, -3.0, 0.5, 0.26895043731778423, -0.7084548104956269, 0.8658892128279884, 0.15462307371928363, 0.06184922948771345, -0.02947695035460993, 0.18500664893617022, 0.4802345261121857, -0.5337849069148937, -0.013090093085106383, 0.7861107753062541, 0.08783068783068783, 0.3006060606060606, 0.22777777777777777, 0.027777777777777776, 0.06218596218596219, 0.2938217338217338, 0.16666666666666666, 0.25, 0.5, 0.5, 0.6428571428571429, 0.875, -0.19894179894179895, 0.9115151515151515, -1.9777777777777779, -0.1111111111111111, 1.67013727013727, -0.2938217338217338, 1.892063492063492, -6.067155067155067, 7.282458282458283, -4.0195360195360195, -7.214545454545455, 20.676923076923078, -20.31142191142191, 7.14965034965035, 7.866666666666666, -18.78205128205128, 13.508547008547009, -2.3653846153846154, 2.0, -5.294871794871795, 4.534188034188034, -1.2115384615384615, -1.4924630924630924, 1.5785667324128863, 1.1958838881915805, -1.219801565955412, -7.051721611721612, 16.273203719357564, -11.978886071193763, 3.0512256973795435, 4.0, -8.384615384615385, 5.769230769230769, -1.3846153846153846))), true, 0, DiffEqBase.DEStats
Number of function 1 evaluations: 2691
Number of function 2 evaluations: 0
Number of W matrix evaluations: 0
Number of linear solves: 0
Number of Jacobians created: 0
Number of nonlinear solver iterations: 0
Number of nonlinear solver convergence failures: 0
Number of rootfind condition calls: 0
Number of accepted steps: 179
Number of rejected steps: 205, :Success), SciMLBase.ODESolution{Float64, 2, Vector{Vector{Float64}}, Nothing, Nothing, Vector{Float64}, Vector{Vector{Vector{Float64}}}, SciMLBase.ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Any}, SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}, SciMLBase.StandardODEProblem}, OwrenZen5, OrdinaryDiffEq.InterpolationData{SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}}, DiffEqBase.DEStats}([[0.0, 0.0], [1.4003084325971904, 5523.028763900987], [1.754402568677754, 6919.817016814244], [1.8366456772681026, 7244.250593851807], [2.646713707507985, 9879.478008037664], [2.7730220502184055, 10281.881905742888], [2.827685583756464, 10469.135813949399], [3.371340350615351, 12299.736882870351], [3.6515220680289495, 13220.949611258584], [3.6773610957760177, 13320.048765071817] … [40.09128013235681, 0.002475817711867029], [40.93930457278344, 0.0023062436482218962], [41.31511222942044, 0.002241153480741131], [41.93204542334558, 0.002146170086302697], [42.205222493626394, 0.002110429986645227], [43.60515013077767, 0.001955055991928106], [44.43904215520143, 0.0018854293053684173], [45.05475920462519, 0.0018718029866253757], [45.54295285024601, 0.0018758665562230718], [46.53160194154717, 0.0018913673480222156]], nothing, nothing, [0.0, 7.554318335584362e-8, 9.464550563572265e-8, 9.90822405203485e-8, 1.4344958936660695e-7, 1.504867863691589e-7, 1.535397415342188e-7, 1.8406929318481775e-7, 1.9992193892636065e-7, 2.013878635127705e-7 … 0.899275050429278, 1.051970944981365, 1.1228392746594125, 1.2423143260838718, 1.2960402862684346, 1.5711050576881902, 1.7267524805797783, 1.8331942573942845, 1.9109623442841863, 2.05], [[[0.0, 0.0]], [[1.8536878189373724e7, 7.311505279233446e10], [1.853672120436229e7, 7.311188570703693e10], [1.853664287115574e7, 7.311030543564815e10], [1.853640850303301e7, 7.31055773990539e10], [1.8536408503033146e7, 7.310557739907114e10], [1.853627500520382e7, 7.310288434432999e10], [1.8536467740662098e7, 7.311653152398457e10], [1.853658615543264e7, 7.311894145093959e10]], [[1.853658615543264e7, 7.311894145093959e10], [1.853662613316974e7, 7.311975497076073e10], [1.8536646132423148e7, 7.31201619438401e10], [1.8536706171330877e7, 7.312138369500815e10], [1.8536706171330873e7, 7.312138369500784e10], [1.8536740507073823e7, 7.312208240336763e10], [1.8536796345764942e7, 7.31232186804332e10], [1.8536826434857324e7, 7.312383097108998e10]], [[1.8536826434857324e7, 7.312383097108998e10], [1.8536835756044257e7, 7.312402065014697e10], [1.853684041719781e7, 7.31241155011692e10], [1.8536854402877036e7, 7.312440009908304e10], [1.8536854402877033e7, 7.312440009908304e10], [1.8536862396192234e7, 7.312456275691365e10], [1.8536875387654908e7, 7.312482712312984e10], [1.8532354056159247e7, 6.321740816189952e10]], [[1.8532354056159247e7, 6.321740816189952e10], [1.843932996659664e7, 6.1890500598476265e10], [1.8393525870803397e7, 6.125115895465318e10], [1.8256813568956446e7, 5.935193756193691e10], [1.8256845250485554e7, 5.9354475117175804e10], [1.8179630970420256e7, 5.8296302937519485e10], [1.805563735718747e7, 5.662532081088429e10], [1.7989585066416465e7, 5.5747102949686615e10]], [[1.7989585066416465e7, 5.5747102949686615e10], [1.797567470775785e7, 5.556314364999414e10], [1.7968735888442315e7, 5.547168401462489e10], [1.7947936357876465e7, 5.519775786046383e10], [1.794793647018308e7, 5.5197766180893616e10], [1.793607316060176e7, 5.504189716095279e10], [1.791922212873689e7, 6.1540899753034645e10], [1.7914063834025525e7, 6.146230772987744e10]], [[1.7914063834025525e7, 6.146230772987744e10], [1.7911081316523455e7, 6.1419912388807724e10], [1.79095908134143e7, 6.139874034698877e10], [1.7905120091038547e7, 6.133524670707594e10], [1.7905120092154622e7, 6.133524679518441e10], [1.790256642397908e7, 6.129899771822993e10], [1.789841831386066e7, 6.124014437987207e10], [1.789618553533389e7, 6.120848036677781e10]], [[1.789618553533389e7, 6.120848036677781e10], [1.7866445165685374e7, 6.078716399411371e10], [1.7851650106953904e7, 6.0579043675260704e10], [1.7807341945490252e7, 5.995683079514737e10], [1.7807343054815162e7, 5.9956918304634056e10], [1.7782124624282457e7, 5.9604506730391716e10], [1.774130309087127e7, 5.903692661524694e10], [1.771940189857675e7, 5.873379882898665e10]], [[1.771940189857675e7, 5.873379882898665e10], [1.7704264950256724e7, 5.8524727854048645e10], [1.7696716143686093e7, 5.842084131268735e10], [1.7674090059177868e7, 5.810974253560682e10], [1.7674090208340432e7, 5.810975400889688e10], [1.7661187603178304e7, 5.793280403403953e10], [1.764026244258035e7, 5.764656213868306e10], [1.7629016151180986e7, 5.749308404181279e10]], [[1.7629016151180986e7, 5.749308404181279e10], [1.7627630497935e7, 5.747419059339175e10], [1.7626937837063476e7, 5.746474927428379e10], [1.762486002723333e7, 5.743643007877311e10], [1.7624860027349107e7, 5.743643008754516e10], [1.762367293370151e7, 5.742025467105379e10], [1.7627111098618146e7, 9.199104159591943e10], [1.7630271683982372e7, 9.206982801308134e10]] … [[5.861924524232597, -0.001308938954889918], [5.845942824691353, -0.0012998204994832414], [5.838071562264905, -0.0012953517962813427], [5.814647865159127, -0.0012819839401572082], [5.814651227793444, -0.001281991464061247], [5.801453947621102, -0.0012744435803516909], [5.78030639510559, -0.0012623403701519406], [5.769067246610691, -0.0012558971471628407]], [[5.769067246610691, -0.0012558971471628407], [5.68880482274324, -0.0012091824943999182], [5.651938229819881, -0.00118827821537263], [5.546285426584078, -0.001125965957961367], [5.54677319840711, -0.0011270936721408864], [5.4908876053095, -0.001092755523807375], [5.408450263794754, -0.0009777777456321142], [5.368844680214424, -0.000957822558239551]], [[5.368844680214424, -0.000957822558239551], [5.345431836020782, -0.0009441725457228971], [5.33421522879171, -0.0009376301986449859], [5.301581306850826, -0.0009180576923609189], [5.301605613766508, -0.0009181123769116495], [5.28382334823728, -0.000907151309508063], [5.2563308975444585, -0.0008898400776508829], [5.242216109929602, -0.000880707990906868]], [[5.242216109929602, -0.000880707990906868], [5.212027563833158, -0.0008603886805701585], [5.198163253663008, -0.0008508922334517352], [5.159485749015742, -0.0008223852074040598], [5.159569860254903, -0.0008226058371869007], [5.139800500880161, -0.000806676941540534], [5.113682544922398, -0.0006859068098544383], [5.101926178471163, -0.0006801469044159206]], [[5.101926178471163, -0.0006801469044159206], [5.095468295508523, -0.0006750961185699863], [5.092436966758179, -0.0006726273704409859], [5.083958421339555, -0.0006651820441246495], [5.083961573594191, -0.000665191353988384], [5.079570776858525, -0.0006609602352204472], [5.073155044813076, -0.0006541459732069925], [5.0700671475809065, -0.000650496295512489]], [[5.0700671475809065, -0.000650496295512489], [5.0557396776130314, -0.0006251486472316874], [5.053638833538261, -0.0006137507754137204], [5.066723256442677, -0.0005678253712960175], [5.06680404873141, -0.000570962279931446], [5.0892532843118445, -0.0005396272633886715], [5.151673513473808, -0.0004917173889550128], [5.199898862429741, -0.00046331377792291134]], [[5.199898862429741, -0.00046331377792291134], [5.241667752675622, -0.0005264281205697801], [5.264347943531978, -0.0005089216851662608], [5.345132391798719, -0.0004632180605966237], [5.34480110339415, -0.0004390880466326923], [5.399552360814613, -0.00043299727765268043], [5.502041477877743, -0.00037105426816080476], [5.565164583276817, -0.0003423410391968926]], [[5.565164583276817, -0.0003423410391968926], [5.628347798968891, -0.0003107278675250941], [5.662324761138542, -0.00014761025914348906], [5.775903071875696, -0.00013235518684777316], [5.77581170324828, -4.012157476784503e-5], [5.846220537874472, -0.0001092391261066283], [5.969631006102876, -5.282405348160319e-5], [6.04100254489828, -3.096598820188489e-5]], [[6.04100254489828, -3.096598820188489e-5], [6.114527552689295, -5.6762194391812675e-6], [6.152022146570164, 6.9408339023599094e-6], [6.271528111400798, 4.915496075538848e-5], [6.271380439472922, 4.8768055148441184e-5], [6.343833927915302, 7.532467492087644e-5], [6.467935057908223, 0.00012133377220766538], [6.534922215492537, -0.00015309393660227662]], [[6.534922215492537, -0.00015309393660227662], [6.70328604571703, -7.7607030470217e-5], [6.790066181809588, -4.092424059127554e-5], [7.082651515732492, 9.437435242419696e-5], [7.080832680896038, 8.85192080722682e-5], [7.2682973331272125, 0.00018286544976446953], [7.601918384282524, 0.0003468354559816537], [7.8033558829833956, 0.0005849978385351721]]], SciMLBase.ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Any}, SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}, SciMLBase.StandardODEProblem}(SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}(GasChromatographySimulator.odesystem_r!, LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, SciMLBase.DEFAULT_OBSERVED, nothing), [0.0, 0.0], (0.0, 2.05), Any[GasChromatographySimulator.Column(2.05, 0.000104, [0.000104], 1.04e-7, [1.04e-7], "FS5ms", "He"), GasChromatographySimulator.Program{GasChromatographySimulator.var"#gf#2"{String, Matrix{Float64}}}([0.0, 0.9200000000000003, 0.9100000000000007, 0.9199999999999986, 0.9199999999999995, 0.910000000000001, 0.9199999999999999, 0.9199999999999982, 0.9200000000000008, 0.9300000000000006 … 0.9199999999999875, 0.9100000000000108, 0.9200000000000017, 0.9099999999999966, 0.9200000000000017, 0.9099999999999966, 0.9200000000000017, 0.9099999999999966, 0.9099999999999966, 0.9200000000000017], [49.323, 48.954, 49.323, 49.077, 49.569, 49.446, 48.831, 49.323, 49.077, 49.077 … 63.099, 56.211, 51.414, 48.339, 46.74, 45.51, 44.895, 44.28, 43.911, 43.542], [354589.48, 354562.67000000004, 354589.48, 354571.61, 354607.32, 354598.4, 354553.72, 354589.48, 354571.61, 354571.61 … 355560.34, 355082.14, 354740.58, 354517.9, 354400.94, 354310.42000000004, 354264.98, 354219.43, 354192.04000000004, 354164.6], [230168.87, 230224.3, 230168.87, 230205.81999999998, 230131.96, 230150.41, 230242.79, 230168.87, 230205.81999999998, 230205.81999999998 … 228154.50999999998, 229148.40000000002, 229856.25, 230316.84999999998, 230558.51, 230745.38999999998, 230839.16, 230933.15000000002, 230989.65000000002, 231046.23], GasChromatographySimulator.var"#gf#2"{String, Matrix{Float64}}("outlet", [-2.829 0.0 2.05 -3.0; -2.46 0.0 2.05 -3.0; … ; -1.23 0.0 2.05 -3.0; -0.984 0.0 2.05 -3.0]), [-2.829 0.0 2.05 -3.0; -2.46 0.0 2.05 -3.0; … ; -1.23 0.0 2.05 -3.0; -0.984 0.0 2.05 -3.0], 2051×108 extrapolate(interpolate((0.0:0.001:2.05,::Vector{Float64}), ::Matrix{Float64}, Gridded(Linear())), Flat()) with element type Float64:
319.644 319.644 319.644 319.89 … 316.077 315.954 315.831 315.708
319.644 319.644 319.644 319.89 316.077 315.954 315.831 315.708
319.645 319.644 319.645 319.89 316.077 315.954 315.831 315.708
319.645 319.645 319.645 319.891 316.078 315.954 315.831 315.708
319.645 319.645 319.645 319.891 316.078 315.955 315.831 315.708
319.645 319.645 319.645 319.891 … 316.078 315.955 315.832 315.708
319.646 319.645 319.646 319.891 316.078 315.955 315.832 315.709
319.646 319.646 319.646 319.892 316.078 315.955 315.832 315.709
319.646 319.646 319.646 319.892 316.079 315.955 315.832 315.709
319.646 319.646 319.646 319.892 316.079 315.955 315.832 315.709
⋮ ⋱ ⋮
322.44 322.075 322.44 322.199 318.022 317.413 317.046 316.68
322.444 322.079 322.444 322.203 318.025 317.415 317.048 316.682
322.448 322.082 322.448 322.206 318.028 317.417 317.05 316.683
322.452 322.086 322.452 322.21 … 318.03 317.419 317.052 316.685
322.456 322.089 322.456 322.213 318.033 317.421 317.054 316.686
322.46 322.093 322.46 322.217 318.036 317.423 317.056 316.688
322.465 322.097 322.465 322.22 318.039 317.426 317.057 316.689
322.469 322.1 322.469 322.224 318.042 317.428 317.059 316.691
322.473 322.104 322.473 322.227 … 318.045 317.43 317.061 316.692, 108-element extrapolate(interpolate((::Vector{Float64},), ::Vector{Float64}, Gridded(Linear())), Flat()) with element type Float64:
354589.48
354562.67000000004
354589.48
354571.61
354607.32
354598.4
354553.72
354589.48
354571.61
354571.61
⋮
355082.14
354740.58
354517.9
354400.94
354310.42000000004
354264.98
354219.43
354192.04000000004
354164.6, 108-element extrapolate(interpolate((::Vector{Float64},), ::Vector{Float64}, Gridded(Linear())), Flat()) with element type Float64:
230168.87
230224.3
230168.87
230205.81999999998
230131.96
230150.41
230242.79
230168.87
230205.81999999998
230205.81999999998
⋮
229148.40000000002
229856.25
230316.84999999998
230558.51
230745.38999999998
230839.16
230933.15000000002
230989.65000000002
231046.23), GasChromatographySimulator.Substance("C25", "629-99-2", 583.8199999999999, 42.26, 189.51, 0.001, "Leppert2020b, alkane, alkanes", 7.354754525382887e-5, 0.0, 0.0), GasChromatographySimulator.Options(OwrenZen5(), 1.0e-6, 0.001, "inlet", true, false, "Blumberg", "Pressure")], Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}(), SciMLBase.StandardODEProblem()), OwrenZen5(), OrdinaryDiffEq.InterpolationData{SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}}(SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}(GasChromatographySimulator.odesystem_r!, LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, SciMLBase.DEFAULT_OBSERVED, nothing), [[0.0, 0.0], [1.4003084325971904, 5523.028763900987], [1.754402568677754, 6919.817016814244], [1.8366456772681026, 7244.250593851807], [2.646713707507985, 9879.478008037664], [2.7730220502184055, 10281.881905742888], [2.827685583756464, 10469.135813949399], [3.371340350615351, 12299.736882870351], [3.6515220680289495, 13220.949611258584], [3.6773610957760177, 13320.048765071817] … [40.09128013235681, 0.002475817711867029], [40.93930457278344, 0.0023062436482218962], [41.31511222942044, 0.002241153480741131], [41.93204542334558, 0.002146170086302697], [42.205222493626394, 0.002110429986645227], [43.60515013077767, 0.001955055991928106], [44.43904215520143, 0.0018854293053684173], [45.05475920462519, 0.0018718029866253757], [45.54295285024601, 0.0018758665562230718], [46.53160194154717, 0.0018913673480222156]], [0.0, 7.554318335584362e-8, 9.464550563572265e-8, 9.90822405203485e-8, 1.4344958936660695e-7, 1.504867863691589e-7, 1.535397415342188e-7, 1.8406929318481775e-7, 1.9992193892636065e-7, 2.013878635127705e-7 … 0.899275050429278, 1.051970944981365, 1.1228392746594125, 1.2423143260838718, 1.2960402862684346, 1.5711050576881902, 1.7267524805797783, 1.8331942573942845, 1.9109623442841863, 2.05], [[[0.0, 0.0]], [[1.8536878189373724e7, 7.311505279233446e10], [1.853672120436229e7, 7.311188570703693e10], [1.853664287115574e7, 7.311030543564815e10], [1.853640850303301e7, 7.31055773990539e10], [1.8536408503033146e7, 7.310557739907114e10], [1.853627500520382e7, 7.310288434432999e10], [1.8536467740662098e7, 7.311653152398457e10], [1.853658615543264e7, 7.311894145093959e10]], [[1.853658615543264e7, 7.311894145093959e10], [1.853662613316974e7, 7.311975497076073e10], [1.8536646132423148e7, 7.31201619438401e10], [1.8536706171330877e7, 7.312138369500815e10], [1.8536706171330873e7, 7.312138369500784e10], [1.8536740507073823e7, 7.312208240336763e10], [1.8536796345764942e7, 7.31232186804332e10], [1.8536826434857324e7, 7.312383097108998e10]], [[1.8536826434857324e7, 7.312383097108998e10], [1.8536835756044257e7, 7.312402065014697e10], [1.853684041719781e7, 7.31241155011692e10], [1.8536854402877036e7, 7.312440009908304e10], [1.8536854402877033e7, 7.312440009908304e10], [1.8536862396192234e7, 7.312456275691365e10], [1.8536875387654908e7, 7.312482712312984e10], [1.8532354056159247e7, 6.321740816189952e10]], [[1.8532354056159247e7, 6.321740816189952e10], [1.843932996659664e7, 6.1890500598476265e10], [1.8393525870803397e7, 6.125115895465318e10], [1.8256813568956446e7, 5.935193756193691e10], [1.8256845250485554e7, 5.9354475117175804e10], [1.8179630970420256e7, 5.8296302937519485e10], [1.805563735718747e7, 5.662532081088429e10], [1.7989585066416465e7, 5.5747102949686615e10]], [[1.7989585066416465e7, 5.5747102949686615e10], [1.797567470775785e7, 5.556314364999414e10], [1.7968735888442315e7, 5.547168401462489e10], [1.7947936357876465e7, 5.519775786046383e10], [1.794793647018308e7, 5.5197766180893616e10], [1.793607316060176e7, 5.504189716095279e10], [1.791922212873689e7, 6.1540899753034645e10], [1.7914063834025525e7, 6.146230772987744e10]], [[1.7914063834025525e7, 6.146230772987744e10], [1.7911081316523455e7, 6.1419912388807724e10], [1.79095908134143e7, 6.139874034698877e10], [1.7905120091038547e7, 6.133524670707594e10], [1.7905120092154622e7, 6.133524679518441e10], [1.790256642397908e7, 6.129899771822993e10], [1.789841831386066e7, 6.124014437987207e10], [1.789618553533389e7, 6.120848036677781e10]], [[1.789618553533389e7, 6.120848036677781e10], [1.7866445165685374e7, 6.078716399411371e10], [1.7851650106953904e7, 6.0579043675260704e10], [1.7807341945490252e7, 5.995683079514737e10], [1.7807343054815162e7, 5.9956918304634056e10], [1.7782124624282457e7, 5.9604506730391716e10], [1.774130309087127e7, 5.903692661524694e10], [1.771940189857675e7, 5.873379882898665e10]], [[1.771940189857675e7, 5.873379882898665e10], [1.7704264950256724e7, 5.8524727854048645e10], [1.7696716143686093e7, 5.842084131268735e10], [1.7674090059177868e7, 5.810974253560682e10], [1.7674090208340432e7, 5.810975400889688e10], [1.7661187603178304e7, 5.793280403403953e10], [1.764026244258035e7, 5.764656213868306e10], [1.7629016151180986e7, 5.749308404181279e10]], [[1.7629016151180986e7, 5.749308404181279e10], [1.7627630497935e7, 5.747419059339175e10], [1.7626937837063476e7, 5.746474927428379e10], [1.762486002723333e7, 5.743643007877311e10], [1.7624860027349107e7, 5.743643008754516e10], [1.762367293370151e7, 5.742025467105379e10], [1.7627111098618146e7, 9.199104159591943e10], [1.7630271683982372e7, 9.206982801308134e10]] … [[5.861924524232597, -0.001308938954889918], [5.845942824691353, -0.0012998204994832414], [5.838071562264905, -0.0012953517962813427], [5.814647865159127, -0.0012819839401572082], [5.814651227793444, -0.001281991464061247], [5.801453947621102, -0.0012744435803516909], [5.78030639510559, -0.0012623403701519406], [5.769067246610691, -0.0012558971471628407]], [[5.769067246610691, -0.0012558971471628407], [5.68880482274324, -0.0012091824943999182], [5.651938229819881, -0.00118827821537263], [5.546285426584078, -0.001125965957961367], [5.54677319840711, -0.0011270936721408864], [5.4908876053095, -0.001092755523807375], [5.408450263794754, -0.0009777777456321142], [5.368844680214424, -0.000957822558239551]], [[5.368844680214424, -0.000957822558239551], [5.345431836020782, -0.0009441725457228971], [5.33421522879171, -0.0009376301986449859], [5.301581306850826, -0.0009180576923609189], [5.301605613766508, -0.0009181123769116495], [5.28382334823728, -0.000907151309508063], [5.2563308975444585, -0.0008898400776508829], [5.242216109929602, -0.000880707990906868]], [[5.242216109929602, -0.000880707990906868], [5.212027563833158, -0.0008603886805701585], [5.198163253663008, -0.0008508922334517352], [5.159485749015742, -0.0008223852074040598], [5.159569860254903, -0.0008226058371869007], [5.139800500880161, -0.000806676941540534], [5.113682544922398, -0.0006859068098544383], [5.101926178471163, -0.0006801469044159206]], [[5.101926178471163, -0.0006801469044159206], [5.095468295508523, -0.0006750961185699863], [5.092436966758179, -0.0006726273704409859], [5.083958421339555, -0.0006651820441246495], [5.083961573594191, -0.000665191353988384], [5.079570776858525, -0.0006609602352204472], [5.073155044813076, -0.0006541459732069925], [5.0700671475809065, -0.000650496295512489]], [[5.0700671475809065, -0.000650496295512489], [5.0557396776130314, -0.0006251486472316874], [5.053638833538261, -0.0006137507754137204], [5.066723256442677, -0.0005678253712960175], [5.06680404873141, -0.000570962279931446], [5.0892532843118445, -0.0005396272633886715], [5.151673513473808, -0.0004917173889550128], [5.199898862429741, -0.00046331377792291134]], [[5.199898862429741, -0.00046331377792291134], [5.241667752675622, -0.0005264281205697801], [5.264347943531978, -0.0005089216851662608], [5.345132391798719, -0.0004632180605966237], [5.34480110339415, -0.0004390880466326923], [5.399552360814613, -0.00043299727765268043], [5.502041477877743, -0.00037105426816080476], [5.565164583276817, -0.0003423410391968926]], [[5.565164583276817, -0.0003423410391968926], [5.628347798968891, -0.0003107278675250941], [5.662324761138542, -0.00014761025914348906], [5.775903071875696, -0.00013235518684777316], [5.77581170324828, -4.012157476784503e-5], [5.846220537874472, -0.0001092391261066283], [5.969631006102876, -5.282405348160319e-5], [6.04100254489828, -3.096598820188489e-5]], [[6.04100254489828, -3.096598820188489e-5], [6.114527552689295, -5.6762194391812675e-6], [6.152022146570164, 6.9408339023599094e-6], [6.271528111400798, 4.915496075538848e-5], [6.271380439472922, 4.8768055148441184e-5], [6.343833927915302, 7.532467492087644e-5], [6.467935057908223, 0.00012133377220766538], [6.534922215492537, -0.00015309393660227662]], [[6.534922215492537, -0.00015309393660227662], [6.70328604571703, -7.7607030470217e-5], [6.790066181809588, -4.092424059127554e-5], [7.082651515732492, 9.437435242419696e-5], [7.080832680896038, 8.85192080722682e-5], [7.2682973331272125, 0.00018286544976446953], [7.601918384282524, 0.0003468354559816537], [7.8033558829833956, 0.0005849978385351721]]], true, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}([46.53160194154717, 0.0018913673480222156], [45.54295285024601, 0.0018758665562230718], [6.534922215492537, -0.00015309393660227662], [6.70328604571703, -7.7607030470217e-5], [6.790066181809588, -4.092424059127554e-5], [7.082651515732492, 9.437435242419696e-5], [7.080832680896038, 8.85192080722682e-5], [7.2682973331272125, 0.00018286544976446953], [7.601918384282524, 0.0003468354559816537], [7.8033558829833956, 0.0005849978385351721], [-6.328000928861851e-6, 2.3547591987094542e-8], [46.39785823580304, 0.0018845869789879124], [-0.00013599069608896772, 0.008144102479126985], OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}(0.16666666666666666, 0.0625, 0.1875, 0.25, -0.75, -0.75, 3.75, -3.0, 0.5, 0.26895043731778423, -0.7084548104956269, 0.8658892128279884, 0.15462307371928363, 0.06184922948771345, -0.02947695035460993, 0.18500664893617022, 0.4802345261121857, -0.5337849069148937, -0.013090093085106383, 0.7861107753062541, 0.08783068783068783, 0.3006060606060606, 0.22777777777777777, 0.027777777777777776, 0.06218596218596219, 0.2938217338217338, 0.16666666666666666, 0.25, 0.5, 0.5, 0.6428571428571429, 0.875, -0.19894179894179895, 0.9115151515151515, -1.9777777777777779, -0.1111111111111111, 1.67013727013727, -0.2938217338217338, 1.892063492063492, -6.067155067155067, 7.282458282458283, -4.0195360195360195, -7.214545454545455, 20.676923076923078, -20.31142191142191, 7.14965034965035, 7.866666666666666, -18.78205128205128, 13.508547008547009, -2.3653846153846154, 2.0, -5.294871794871795, 4.534188034188034, -1.2115384615384615, -1.4924630924630924, 1.5785667324128863, 1.1958838881915805, -1.219801565955412, -7.051721611721612, 16.273203719357564, -11.978886071193763, 3.0512256973795435, 4.0, -8.384615384615385, 5.769230769230769, -1.3846153846153846))), true, 0, DiffEqBase.DEStats
Number of function 1 evaluations: 2495
Number of function 2 evaluations: 0
Number of W matrix evaluations: 0
Number of linear solves: 0
Number of Jacobians created: 0
Number of nonlinear solver iterations: 0
Number of nonlinear solver convergence failures: 0
Number of rootfind condition calls: 0
Number of accepted steps: 179
Number of rejected steps: 177, :Success), SciMLBase.ODESolution{Float64, 2, Vector{Vector{Float64}}, Nothing, Nothing, Vector{Float64}, Vector{Vector{Vector{Float64}}}, SciMLBase.ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Any}, SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}, SciMLBase.StandardODEProblem}, OwrenZen5, OrdinaryDiffEq.InterpolationData{SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}}, DiffEqBase.DEStats}([[0.0, 0.0], [1.1779966276738512, 15708.886045760422], [1.684656668453849, 22466.0877364863], [1.8300447290617428, 24405.18929246461], [2.73953239152248, 34204.70599646], [2.926501437793645, 36321.25531416998], [3.012689137971616, 37298.86767311034], [3.4988996828284, 42716.92705970171], [3.648255765652932, 44348.585602904415], [3.674833104010144, 44692.49332825443] … [42.46635213694344, 0.0024069841895739586], [43.69038696958185, 0.002213195243946376], [44.25864859742996, 0.0021235397005715108], [44.56436902579432, 0.002081247283892372], [45.481098866100865, 0.0020171245261423093], [45.848725657291574, 0.0019822458286607447], [46.03755099419678, 0.0019661568955306585], [46.4446118802048, 0.0019382811231219907], [47.42220239068073, 0.0019468734798371236], [47.926353955059916, 0.0019897471202041904]], nothing, nothing, [0.0, 1.9153240891154175e-8, 2.739107404410937e-8, 2.975492395281546e-8, 4.481034919579066e-8, 4.796752137726083e-8, 4.9426822464486835e-8, 5.7705533588870885e-8, 6.026450351876067e-8, 6.072063185317698e-8 … 1.1013140738805032, 1.332051426965527, 1.4414349193953147, 1.5001023187376756, 1.6707993895634896, 1.735888947052791, 1.768431750318483, 1.836229594666992, 1.983383640283496, 2.05], [[[0.0, 0.0]], [[6.150494094621198e7, 8.202160645879807e11], [6.1504502754115544e7, 8.201861382754515e11], [6.1504284031738274e7, 8.201712010470632e11], [6.150362934580112e7, 8.20126490619115e11], [6.150362934580143e7, 8.201264906192317e11], [6.150325624059029e7, 8.201010105887299e11], [6.150314382928702e7, 8.202025525469692e11], [6.1503473601309754e7, 8.202252665426965e11]], [[6.1503473601309754e7, 8.202252665426965e11], [6.150366297066689e7, 8.20238308789423e11], [6.150375772598415e7, 8.202448348102856e11], [6.150404227182222e7, 8.202644319867001e11], [6.150404227182216e7, 8.202644319866897e11], [6.150420505849808e7, 8.202756433493062e11], [6.150446988003794e7, 8.202938819361849e11], [6.150461262658221e7, 8.203037130309604e11]], [[6.150461262658221e7, 8.203037130309604e11], [6.150466726930083e7, 8.203074763191996e11], [6.15046945964716e7, 8.203093583662104e11], [6.150477660101213e7, 8.203150060794556e11], [6.150477660101217e7, 8.203150060794559e11], [6.150482347630561e7, 8.203182344117395e11], [6.150489967278846e7, 8.203234821076082e11], [6.150483213612593e7, 7.018383305365823e11]], [[6.150483213612593e7, 7.018383305365823e11], [6.1131749592166096e7, 6.840038087564869e11], [6.0948634044020854e7, 6.754776922171713e11], [6.040262833954774e7, 6.50195583863008e11], [6.040281393507445e7, 6.502455128594099e11], [6.009513638818543e7, 6.362241581699694e11], [5.96022986545941e7, 6.142286222980564e11], [5.934032122528925e7, 6.02723866957211e11]], [[5.934032122528925e7, 6.02723866957211e11], [5.929173541631403e7, 6.809046532506985e11], [5.927361383864792e7, 6.799810407913313e11], [5.921926153014941e7, 6.775067283354763e11], [5.921930677068485e7, 6.769197928127662e11], [5.918825301703455e7, 6.760459908631511e11], [5.913795013909116e7, 6.734868052173177e11], [5.91108878241753e7, 6.722758005578047e11]], [[5.91108878241753e7, 6.722758005578047e11], [5.909422315880963e7, 6.714881096694877e11], [5.9085897969030045e7, 6.71095070611716e11], [5.906092981215538e7, 6.699166580342238e11], [5.906092983003786e7, 6.699166627331764e11], [5.904667202935007e7, 6.692443189180056e11], [5.9023518216449074e7, 6.681533770595869e11], [5.901105850309722e7, 6.675667696401902e11]], [[5.901105850309722e7, 6.675667696401902e11], [5.891691191880992e7, 6.63139337217009e11], [5.887006676572304e7, 6.609512351484546e11], [5.872976479575027e7, 6.544086164279089e11], [5.872976803229108e7, 6.544094646735814e11], [5.864990074317304e7, 6.507025487009825e11], [5.8520597201673426e7, 6.447301523455297e11], [5.845121410203892e7, 6.415394388982302e11]], [[5.845121410203892e7, 6.415394388982302e11], [5.842266104126788e7, 6.402287574044802e11], [5.8408405713847145e7, 6.395757447961946e11], [5.836566168733031e7, 6.376187341379038e11], [5.8365661779325455e7, 6.376187576615342e11], [5.834126539215529e7, 6.365034383090311e11], [5.830166609655851e7, 6.346957137943284e11], [5.828036625683137e7, 6.337246865490168e11]], [[5.828036625683137e7, 6.337246865490168e11], [5.8275306217466004e7, 6.33494127912621e11], [5.827277686582187e7, 6.333789214509836e11], [5.826518950557425e7, 6.330333661382853e11], [5.826518950608891e7, 6.330333662689471e11], [5.8260854782725126e7, 6.328360001222311e11], [5.826078058465463e7, 1.0441184302001792e12], [5.827231212886953e7, 1.0451124892307621e12]] … [[5.641965431606649, -0.0010013379865140433], [5.606498188685869, -0.000985218067414554], [5.589666890541967, -0.0009775838490690496], [5.540867122081316, -0.000954731476768572], [5.540932397612335, -0.0009548411686115081], [5.51453397381076, -0.0009420844900409342], [5.474108991102136, -0.0009221430210619476], [5.453522079775509, -0.0009116785424583304]], [[5.453522079775509, -0.0009116785424583304], [5.39061079587702, -0.0008776811104508663], [5.363061235304204, -0.0009007839414789543], [5.291152730490691, -0.0008335800429222343], [5.291546933539453, -0.0008814929810503848], [5.259429958995011, -0.000803582844674332], [5.222456745933233, -0.000764698878705475], [5.208126653161629, -0.0008863707023121516]], [[5.208126653161629, -0.0008863707023121516], [5.2000905366161065, -0.0008632370027266438], [5.197051342566706, -0.0008523019276932974], [5.191402767720146, -0.000819124095877955], [5.19142032742057, -0.0008193514196271215], [5.190673764750933, -0.0008005319635062732], [5.193467689468601, -0.0007707620165645058], [5.197059396886714, -0.0007548423919977684]], [[5.197059396886714, -0.0007548423919977684], [5.200558054415759, -0.0007434258025931606], [5.202580775852719, -0.0007378488962326867], [5.209871006843247, -0.0007208824245241176], [5.20986827885325, -0.0007209149710688599], [5.214846543771549, -0.0007111917848833149], [5.224216391359123, -0.0006954275504920272], [5.230208714435375, -0.00042372552922025075]], [[5.230208714435375, -0.00042372552922025075], [5.266322001068461, -0.00040963139700358163], [5.286418784304864, -0.00040262242284453027], [5.358670283089499, -0.0003782934492257625], [5.358443860761296, -0.00037875232386335713], [5.407784706441177, -0.00036268970270305137], [5.500902922383209, -0.0003340922668397246], [5.558498642410745, -0.00031656576240778403]], [[5.558498642410745, -0.00031656576240778403], [5.587113275799532, -0.000591630236938318], [5.601111550231805, -0.0005818759076245072], [5.645791648745664, -0.0005675074604719254], [5.645684719263213, -0.0005345873068353145], [5.672890000698306, -0.0005560832027931553], [5.7194390519756, -0.0005256303485120721], [5.745878996019278, -0.0005182966678367578]], [[5.745878996019278, -0.0005182966678367578], [5.764081302699913, -0.0005104945535274507], [5.773281325476167, -0.0005066128229907953], [5.801685990490807, -0.0004946119717243965], [5.80168016045253, -0.000494625705298281], [5.818374770132933, -0.00048760835206599143], [5.846219983641394, -0.00047598969703548186], [5.8615933622528065, -0.000469603422369218]], [[5.8615933622528065, -0.000469603422369218], [5.905945908987927, -0.00045112672494032613], [5.928590972832833, -0.0004419723077966949], [6.0005565530326, -0.00041248828158151844], [6.000489080607628, -0.00041265507359617825], [6.044002460736579, -0.0003947630654516773], [6.118386121400068, -0.00036446584378822247], [6.160793270084777, -7.619695932954305e-5]], [[6.160793270084777, -7.619695932954305e-5], [6.302777025896968, -3.9371399447726916e-5], [6.376033174737371, -2.1161278916530073e-5], [6.621155725773424, 4.790307316535503e-5], [6.619946460785469, 4.508530156250613e-5], [6.775860540872246, 9.42307085619893e-5], [7.052337343489528, 0.00018181229967778774], [7.219104525248847, 0.0005018287671922188]], [[7.219104525248847, 0.0005018287671922188], [7.329102923096397, 0.0005455116897137126], [7.38474345164147, 0.0005669577501692911], [7.560733770190493, 0.0006389090944829484], [7.560479204744591, 0.0006380224571538584], [7.666134204893605, 0.000683129074287938], [7.84530244143796, 0.0007601554125613455], [7.9460592307248925, 0.0008046984489857318]]], SciMLBase.ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Any}, SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}, SciMLBase.StandardODEProblem}(SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}(GasChromatographySimulator.odesystem_r!, LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, SciMLBase.DEFAULT_OBSERVED, nothing), [0.0, 0.0], (0.0, 2.05), Any[GasChromatographySimulator.Column(2.05, 0.000104, [0.000104], 1.04e-7, [1.04e-7], "FS5ms", "He"), GasChromatographySimulator.Program{GasChromatographySimulator.var"#gf#2"{String, Matrix{Float64}}}([0.0, 0.9200000000000003, 0.9100000000000007, 0.9199999999999986, 0.9199999999999995, 0.910000000000001, 0.9199999999999999, 0.9199999999999982, 0.9200000000000008, 0.9300000000000006 … 0.9199999999999875, 0.9100000000000108, 0.9200000000000017, 0.9099999999999966, 0.9200000000000017, 0.9099999999999966, 0.9200000000000017, 0.9099999999999966, 0.9099999999999966, 0.9200000000000017], [49.323, 48.954, 49.323, 49.077, 49.569, 49.446, 48.831, 49.323, 49.077, 49.077 … 63.099, 56.211, 51.414, 48.339, 46.74, 45.51, 44.895, 44.28, 43.911, 43.542], [354589.48, 354562.67000000004, 354589.48, 354571.61, 354607.32, 354598.4, 354553.72, 354589.48, 354571.61, 354571.61 … 355560.34, 355082.14, 354740.58, 354517.9, 354400.94, 354310.42000000004, 354264.98, 354219.43, 354192.04000000004, 354164.6], [230168.87, 230224.3, 230168.87, 230205.81999999998, 230131.96, 230150.41, 230242.79, 230168.87, 230205.81999999998, 230205.81999999998 … 228154.50999999998, 229148.40000000002, 229856.25, 230316.84999999998, 230558.51, 230745.38999999998, 230839.16, 230933.15000000002, 230989.65000000002, 231046.23], GasChromatographySimulator.var"#gf#2"{String, Matrix{Float64}}("outlet", [-2.829 0.0 2.05 -3.0; -2.46 0.0 2.05 -3.0; … ; -1.23 0.0 2.05 -3.0; -0.984 0.0 2.05 -3.0]), [-2.829 0.0 2.05 -3.0; -2.46 0.0 2.05 -3.0; … ; -1.23 0.0 2.05 -3.0; -0.984 0.0 2.05 -3.0], 2051×108 extrapolate(interpolate((0.0:0.001:2.05,::Vector{Float64}), ::Matrix{Float64}, Gridded(Linear())), Flat()) with element type Float64:
319.644 319.644 319.644 319.89 … 316.077 315.954 315.831 315.708
319.644 319.644 319.644 319.89 316.077 315.954 315.831 315.708
319.645 319.644 319.645 319.89 316.077 315.954 315.831 315.708
319.645 319.645 319.645 319.891 316.078 315.954 315.831 315.708
319.645 319.645 319.645 319.891 316.078 315.955 315.831 315.708
319.645 319.645 319.645 319.891 … 316.078 315.955 315.832 315.708
319.646 319.645 319.646 319.891 316.078 315.955 315.832 315.709
319.646 319.646 319.646 319.892 316.078 315.955 315.832 315.709
319.646 319.646 319.646 319.892 316.079 315.955 315.832 315.709
319.646 319.646 319.646 319.892 316.079 315.955 315.832 315.709
⋮ ⋱ ⋮
322.44 322.075 322.44 322.199 318.022 317.413 317.046 316.68
322.444 322.079 322.444 322.203 318.025 317.415 317.048 316.682
322.448 322.082 322.448 322.206 318.028 317.417 317.05 316.683
322.452 322.086 322.452 322.21 … 318.03 317.419 317.052 316.685
322.456 322.089 322.456 322.213 318.033 317.421 317.054 316.686
322.46 322.093 322.46 322.217 318.036 317.423 317.056 316.688
322.465 322.097 322.465 322.22 318.039 317.426 317.057 316.689
322.469 322.1 322.469 322.224 318.042 317.428 317.059 316.691
322.473 322.104 322.473 322.227 … 318.045 317.43 317.061 316.692, 108-element extrapolate(interpolate((::Vector{Float64},), ::Vector{Float64}, Gridded(Linear())), Flat()) with element type Float64:
354589.48
354562.67000000004
354589.48
354571.61
354607.32
354598.4
354553.72
354589.48
354571.61
354571.61
⋮
355082.14
354740.58
354517.9
354400.94
354310.42000000004
354264.98
354219.43
354192.04000000004
354164.6, 108-element extrapolate(interpolate((::Vector{Float64},), ::Vector{Float64}, Gridded(Linear())), Flat()) with element type Float64:
230168.87
230224.3
230168.87
230205.81999999998
230131.96
230150.41
230242.79
230168.87
230205.81999999998
230205.81999999998
⋮
229148.40000000002
229856.25
230316.84999999998
230558.51
230745.38999999998
230839.16
230933.15000000002
230989.65000000002
231046.23), GasChromatographySimulator.Substance("C26", "630-1-3", 593.5699999999999, 44.16, 216.77, 0.001, "Leppert2020b, alkane", 7.200161658208628e-5, 0.0, 0.0), GasChromatographySimulator.Options(OwrenZen5(), 1.0e-6, 0.001, "inlet", true, false, "Blumberg", "Pressure")], Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}(), SciMLBase.StandardODEProblem()), OwrenZen5(), OrdinaryDiffEq.InterpolationData{SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}}(SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}(GasChromatographySimulator.odesystem_r!, LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, SciMLBase.DEFAULT_OBSERVED, nothing), [[0.0, 0.0], [1.1779966276738512, 15708.886045760422], [1.684656668453849, 22466.0877364863], [1.8300447290617428, 24405.18929246461], [2.73953239152248, 34204.70599646], [2.926501437793645, 36321.25531416998], [3.012689137971616, 37298.86767311034], [3.4988996828284, 42716.92705970171], [3.648255765652932, 44348.585602904415], [3.674833104010144, 44692.49332825443] … [42.46635213694344, 0.0024069841895739586], [43.69038696958185, 0.002213195243946376], [44.25864859742996, 0.0021235397005715108], [44.56436902579432, 0.002081247283892372], [45.481098866100865, 0.0020171245261423093], [45.848725657291574, 0.0019822458286607447], [46.03755099419678, 0.0019661568955306585], [46.4446118802048, 0.0019382811231219907], [47.42220239068073, 0.0019468734798371236], [47.926353955059916, 0.0019897471202041904]], [0.0, 1.9153240891154175e-8, 2.739107404410937e-8, 2.975492395281546e-8, 4.481034919579066e-8, 4.796752137726083e-8, 4.9426822464486835e-8, 5.7705533588870885e-8, 6.026450351876067e-8, 6.072063185317698e-8 … 1.1013140738805032, 1.332051426965527, 1.4414349193953147, 1.5001023187376756, 1.6707993895634896, 1.735888947052791, 1.768431750318483, 1.836229594666992, 1.983383640283496, 2.05], [[[0.0, 0.0]], [[6.150494094621198e7, 8.202160645879807e11], [6.1504502754115544e7, 8.201861382754515e11], [6.1504284031738274e7, 8.201712010470632e11], [6.150362934580112e7, 8.20126490619115e11], [6.150362934580143e7, 8.201264906192317e11], [6.150325624059029e7, 8.201010105887299e11], [6.150314382928702e7, 8.202025525469692e11], [6.1503473601309754e7, 8.202252665426965e11]], [[6.1503473601309754e7, 8.202252665426965e11], [6.150366297066689e7, 8.20238308789423e11], [6.150375772598415e7, 8.202448348102856e11], [6.150404227182222e7, 8.202644319867001e11], [6.150404227182216e7, 8.202644319866897e11], [6.150420505849808e7, 8.202756433493062e11], [6.150446988003794e7, 8.202938819361849e11], [6.150461262658221e7, 8.203037130309604e11]], [[6.150461262658221e7, 8.203037130309604e11], [6.150466726930083e7, 8.203074763191996e11], [6.15046945964716e7, 8.203093583662104e11], [6.150477660101213e7, 8.203150060794556e11], [6.150477660101217e7, 8.203150060794559e11], [6.150482347630561e7, 8.203182344117395e11], [6.150489967278846e7, 8.203234821076082e11], [6.150483213612593e7, 7.018383305365823e11]], [[6.150483213612593e7, 7.018383305365823e11], [6.1131749592166096e7, 6.840038087564869e11], [6.0948634044020854e7, 6.754776922171713e11], [6.040262833954774e7, 6.50195583863008e11], [6.040281393507445e7, 6.502455128594099e11], [6.009513638818543e7, 6.362241581699694e11], [5.96022986545941e7, 6.142286222980564e11], [5.934032122528925e7, 6.02723866957211e11]], [[5.934032122528925e7, 6.02723866957211e11], [5.929173541631403e7, 6.809046532506985e11], [5.927361383864792e7, 6.799810407913313e11], [5.921926153014941e7, 6.775067283354763e11], [5.921930677068485e7, 6.769197928127662e11], [5.918825301703455e7, 6.760459908631511e11], [5.913795013909116e7, 6.734868052173177e11], [5.91108878241753e7, 6.722758005578047e11]], [[5.91108878241753e7, 6.722758005578047e11], [5.909422315880963e7, 6.714881096694877e11], [5.9085897969030045e7, 6.71095070611716e11], [5.906092981215538e7, 6.699166580342238e11], [5.906092983003786e7, 6.699166627331764e11], [5.904667202935007e7, 6.692443189180056e11], [5.9023518216449074e7, 6.681533770595869e11], [5.901105850309722e7, 6.675667696401902e11]], [[5.901105850309722e7, 6.675667696401902e11], [5.891691191880992e7, 6.63139337217009e11], [5.887006676572304e7, 6.609512351484546e11], [5.872976479575027e7, 6.544086164279089e11], [5.872976803229108e7, 6.544094646735814e11], [5.864990074317304e7, 6.507025487009825e11], [5.8520597201673426e7, 6.447301523455297e11], [5.845121410203892e7, 6.415394388982302e11]], [[5.845121410203892e7, 6.415394388982302e11], [5.842266104126788e7, 6.402287574044802e11], [5.8408405713847145e7, 6.395757447961946e11], [5.836566168733031e7, 6.376187341379038e11], [5.8365661779325455e7, 6.376187576615342e11], [5.834126539215529e7, 6.365034383090311e11], [5.830166609655851e7, 6.346957137943284e11], [5.828036625683137e7, 6.337246865490168e11]], [[5.828036625683137e7, 6.337246865490168e11], [5.8275306217466004e7, 6.33494127912621e11], [5.827277686582187e7, 6.333789214509836e11], [5.826518950557425e7, 6.330333661382853e11], [5.826518950608891e7, 6.330333662689471e11], [5.8260854782725126e7, 6.328360001222311e11], [5.826078058465463e7, 1.0441184302001792e12], [5.827231212886953e7, 1.0451124892307621e12]] … [[5.641965431606649, -0.0010013379865140433], [5.606498188685869, -0.000985218067414554], [5.589666890541967, -0.0009775838490690496], [5.540867122081316, -0.000954731476768572], [5.540932397612335, -0.0009548411686115081], [5.51453397381076, -0.0009420844900409342], [5.474108991102136, -0.0009221430210619476], [5.453522079775509, -0.0009116785424583304]], [[5.453522079775509, -0.0009116785424583304], [5.39061079587702, -0.0008776811104508663], [5.363061235304204, -0.0009007839414789543], [5.291152730490691, -0.0008335800429222343], [5.291546933539453, -0.0008814929810503848], [5.259429958995011, -0.000803582844674332], [5.222456745933233, -0.000764698878705475], [5.208126653161629, -0.0008863707023121516]], [[5.208126653161629, -0.0008863707023121516], [5.2000905366161065, -0.0008632370027266438], [5.197051342566706, -0.0008523019276932974], [5.191402767720146, -0.000819124095877955], [5.19142032742057, -0.0008193514196271215], [5.190673764750933, -0.0008005319635062732], [5.193467689468601, -0.0007707620165645058], [5.197059396886714, -0.0007548423919977684]], [[5.197059396886714, -0.0007548423919977684], [5.200558054415759, -0.0007434258025931606], [5.202580775852719, -0.0007378488962326867], [5.209871006843247, -0.0007208824245241176], [5.20986827885325, -0.0007209149710688599], [5.214846543771549, -0.0007111917848833149], [5.224216391359123, -0.0006954275504920272], [5.230208714435375, -0.00042372552922025075]], [[5.230208714435375, -0.00042372552922025075], [5.266322001068461, -0.00040963139700358163], [5.286418784304864, -0.00040262242284453027], [5.358670283089499, -0.0003782934492257625], [5.358443860761296, -0.00037875232386335713], [5.407784706441177, -0.00036268970270305137], [5.500902922383209, -0.0003340922668397246], [5.558498642410745, -0.00031656576240778403]], [[5.558498642410745, -0.00031656576240778403], [5.587113275799532, -0.000591630236938318], [5.601111550231805, -0.0005818759076245072], [5.645791648745664, -0.0005675074604719254], [5.645684719263213, -0.0005345873068353145], [5.672890000698306, -0.0005560832027931553], [5.7194390519756, -0.0005256303485120721], [5.745878996019278, -0.0005182966678367578]], [[5.745878996019278, -0.0005182966678367578], [5.764081302699913, -0.0005104945535274507], [5.773281325476167, -0.0005066128229907953], [5.801685990490807, -0.0004946119717243965], [5.80168016045253, -0.000494625705298281], [5.818374770132933, -0.00048760835206599143], [5.846219983641394, -0.00047598969703548186], [5.8615933622528065, -0.000469603422369218]], [[5.8615933622528065, -0.000469603422369218], [5.905945908987927, -0.00045112672494032613], [5.928590972832833, -0.0004419723077966949], [6.0005565530326, -0.00041248828158151844], [6.000489080607628, -0.00041265507359617825], [6.044002460736579, -0.0003947630654516773], [6.118386121400068, -0.00036446584378822247], [6.160793270084777, -7.619695932954305e-5]], [[6.160793270084777, -7.619695932954305e-5], [6.302777025896968, -3.9371399447726916e-5], [6.376033174737371, -2.1161278916530073e-5], [6.621155725773424, 4.790307316535503e-5], [6.619946460785469, 4.508530156250613e-5], [6.775860540872246, 9.42307085619893e-5], [7.052337343489528, 0.00018181229967778774], [7.219104525248847, 0.0005018287671922188]], [[7.219104525248847, 0.0005018287671922188], [7.329102923096397, 0.0005455116897137126], [7.38474345164147, 0.0005669577501692911], [7.560733770190493, 0.0006389090944829484], [7.560479204744591, 0.0006380224571538584], [7.666134204893605, 0.000683129074287938], [7.84530244143796, 0.0007601554125613455], [7.9460592307248925, 0.0008046984489857318]]], true, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}([47.926353955059916, 0.0019897471202041904], [47.42220239068073, 0.0019468734798371236], [7.219104525248847, 0.0005018287671922188], [7.329102923096397, 0.0005455116897137126], [7.38474345164147, 0.0005669577501692911], [7.560733770190493, 0.0006389090944829484], [7.560479204744591, 0.0006380224571538584], [7.666134204893605, 0.000683129074287938], [7.84530244143796, 0.0007601554125613455], [7.9460592307248925, 0.0008046984489857318], [-2.9886490426035635e-7, 8.936328508306153e-10], [47.8606181180005, 0.001983247805277156], [-6.23578978594548e-6, 0.0002988991426036002], OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}(0.16666666666666666, 0.0625, 0.1875, 0.25, -0.75, -0.75, 3.75, -3.0, 0.5, 0.26895043731778423, -0.7084548104956269, 0.8658892128279884, 0.15462307371928363, 0.06184922948771345, -0.02947695035460993, 0.18500664893617022, 0.4802345261121857, -0.5337849069148937, -0.013090093085106383, 0.7861107753062541, 0.08783068783068783, 0.3006060606060606, 0.22777777777777777, 0.027777777777777776, 0.06218596218596219, 0.2938217338217338, 0.16666666666666666, 0.25, 0.5, 0.5, 0.6428571428571429, 0.875, -0.19894179894179895, 0.9115151515151515, -1.9777777777777779, -0.1111111111111111, 1.67013727013727, -0.2938217338217338, 1.892063492063492, -6.067155067155067, 7.282458282458283, -4.0195360195360195, -7.214545454545455, 20.676923076923078, -20.31142191142191, 7.14965034965035, 7.866666666666666, -18.78205128205128, 13.508547008547009, -2.3653846153846154, 2.0, -5.294871794871795, 4.534188034188034, -1.2115384615384615, -1.4924630924630924, 1.5785667324128863, 1.1958838881915805, -1.219801565955412, -7.051721611721612, 16.273203719357564, -11.978886071193763, 3.0512256973795435, 4.0, -8.384615384615385, 5.769230769230769, -1.3846153846153846))), true, 0, DiffEqBase.DEStats
Number of function 1 evaluations: 3013
Number of function 2 evaluations: 0
Number of W matrix evaluations: 0
Number of linear solves: 0
Number of Jacobians created: 0
Number of nonlinear solver iterations: 0
Number of nonlinear solver convergence failures: 0
Number of rootfind condition calls: 0
Number of accepted steps: 199
Number of rejected steps: 231, :Success), SciMLBase.ODESolution{Float64, 2, Vector{Vector{Float64}}, Nothing, Nothing, Vector{Float64}, Vector{Vector{Vector{Float64}}}, SciMLBase.ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Any}, SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}, SciMLBase.StandardODEProblem}, OwrenZen5, OrdinaryDiffEq.InterpolationData{SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}}, DiffEqBase.DEStats}([[0.0, 0.0], [1.2763855206843044, 23211.7995391023], [1.8052564732619063, 32830.86067259819], [1.839915037814302, 33434.97050543526], [1.8561103246666324, 33687.36574252497], [2.017509326886005, 36175.254977413664], [2.7395181618198303, 46711.46422463685], [2.9265060787007453, 49608.65488832182], [3.0073276302000367, 50863.522021291945], [3.469728026542556, 57925.789076859444] … [44.572568887172785, 0.0022893779691116225], [45.352182748405774, 0.0021989116767181494], [45.525458907012435, 0.0021774454683503104], [45.60478677151747, 0.002164703674231089], [46.17585134318182, 0.0020805718379300264], [46.46716513926591, 0.0020430221843219065], [47.37592097451978, 0.002000151637067177], [48.29385390612949, 0.002009390054068793], [48.94823095368651, 0.0020276786001882092], [49.28679330161679, 0.0020452967166361344]], nothing, nothing, [0.0, 1.549812643072404e-8, 2.191972931310239e-8, 2.2340579308302886e-8, 2.2537358640982475e-8, 2.4505151967778382e-8, 3.3459358194054676e-8, 3.5815393472289196e-8, 3.683637664065887e-8, 4.2708204283079887e-8 … 1.2606259550367571, 1.4075956060506303, 1.4401763416037194, 1.4550650100676017, 1.5614802468863813, 1.614857649591687, 1.773342036167375, 1.9166407767194713, 2.0070505611288474, 2.05], [[[0.0, 0.0]], [[8.235896374208628e7, 1.4978028826303857e12], [8.2358328040475e7, 1.497743613569072e12], [8.235801077705334e7, 1.497714034577947e12], [8.235706131520107e7, 1.4976255145045056e12], [8.235706131520157e7, 1.4976255145047751e12], [8.235652033923237e7, 1.4975750789564688e12], [8.235681543659939e7, 1.4978022376968032e12], [8.235729443558903e7, 1.4978472773144736e12]], [[8.235729443558903e7, 1.4978472773144736e12], [8.235755944450353e7, 1.4978721932194602e12], [8.235769205201866e7, 1.4978846609079153e12], [8.23580902828909e7, 1.4979221019660303e12], [8.235809028289089e7, 1.4979221019660098e12], [8.23583181192029e7, 1.4979435226498867e12], [8.235868878094295e7, 1.4979783712598047e12], [8.235888858734892e7, 1.4979971564037905e12]], [[8.235888858734892e7, 1.4979971564037905e12], [8.235890605414906e7, 1.4979987985711165e12], [8.235891478799124e7, 1.4979996196965525e12], [8.23589409912703e7, 1.4980020832358777e12], [8.235894099127029e7, 1.498002083235878e12], [8.23589559657564e7, 1.4980034910833337e12], [8.234122629642156e7, 1.2851202238273623e12], [8.232747547151712e7, 1.2843147128198843e12]], [[8.232747547151712e7, 1.2843147128198843e12], [8.231890289299548e7, 1.2837529328715042e12], [8.231461796087481e7, 1.2834722559363372e12], [8.230176457492808e7, 1.2826304125214043e12], [8.230176457618289e7, 1.2826304129796704e12], [8.229442163439365e7, 1.2821496344826072e12], [8.228249222667706e7, 1.281368796947207e12], [8.227607017079264e7, 1.2809485645899067e12]], [[8.227607017079264e7, 1.2809485645899067e12], [8.219049659028298e7, 1.2753527250918623e12], [8.214784502239802e7, 1.2725759788708765e12], [8.202002947179042e7, 1.2642639534910476e12], [8.202003072187552e7, 1.2642644098191025e12], [8.194717545341739e7, 1.2595413239497292e12], [8.182907105188732e7, 1.2519087799136294e12], [8.17656209261626e7, 1.247820114747188e12]], [[8.17656209261626e7, 1.247820114747188e12], [8.13819175685872e7, 1.223183070389239e12], [8.119279413164185e7, 1.2112836423794077e12], [8.062812391283412e7, 1.1759146774835203e12], [8.062823812223962e7, 1.1759558976849639e12], [8.030907684175347e7, 1.1562205304265784e12], [7.979614210481977e7, 1.1249937643791016e12], [7.952270753963144e7, 1.1085572180686128e12]], [[7.952270753963144e7, 1.1085572180686128e12], [7.945899572872148e7, 1.248513140069229e12], [7.943523981099835e7, 1.2468596918075374e12], [7.936398794057313e7, 1.2424185980751238e12], [7.936404602603225e7, 1.241390841019004e12], [7.932333663515578e7, 1.2397988161424048e12], [7.92573885050606e7, 1.235216888183767e12], [7.92219085343509e7, 1.2330421678932744e12]], [[7.92219085343509e7, 1.2330421678932744e12], [7.920142444506115e7, 1.231717698244633e12], [7.919119045250402e7, 1.231056706855583e12], [7.916049683085391e7, 1.2290748195519856e12], [7.916049684934458e7, 1.2290748261971174e12], [7.914296859371842e7, 1.2279439157092295e12], [7.911450221509829e7, 1.226108679200798e12], [7.909918287499148e7, 1.2251217444436768e12]], [[7.909918287499148e7, 1.2251217444436768e12], [7.898182640755753e7, 1.2175690924611304e12], [7.892341263751167e7, 1.21383339972355e12], [7.874844224904926e7, 1.2026608119925818e12], [7.874844573802792e7, 1.2026620629526375e12], [7.86488170023835e7, 1.1963282030835894e12], [7.848747780266182e7, 1.1861171223822837e12], [7.840088369572128e7, 1.1806589355026016e12]] … [[5.432698685738521, -0.001184448425923518], [5.410095011363922, -0.001158221200323942], [5.399556990115431, -0.0011458376657752945], [5.369823101036569, -0.0011088181147598775], [5.369862027931942, -0.0011090031025972344], [5.354362940503378, -0.0010883648470120916], [5.33160578536406, -0.0010561353715145831], [5.321613658378508, -0.0006535615524417581]], [[5.321613658378508, -0.0006535615524417581], [5.310264344016649, -0.0006407834165915857], [5.306098328736942, -0.0006346908343480566], [5.298851775648682, -0.000615693453680205], [5.298890394728696, -0.0006158762760329205], [5.298549606814219, -0.0006047529396405577], [5.304226498061543, -0.0005867273970311358], [5.310543408479821, -0.0005767871212763766]], [[5.310543408479821, -0.0005767871212763766], [5.312864296548729, -0.0005738061266739084], [5.314097544438558, -0.0005723265741133911], [5.318122666597057, -0.0005678257126452385], [5.31812228671365, -0.0005678281281388726], [5.320637398280165, -0.0005652348449922948], [5.324790044699547, -0.000870925333701836], [5.3258070482676585, -0.0008638866447102521]], [[5.3258070482676585, -0.0008638866447102521], [5.326490767812988, -0.0008611821777034737], [5.32684874507885, -0.0008598391197922623], [5.327998360604966, -0.0008557995794239845], [5.327998297371403, -0.0008558001149314297], [5.328703011575806, -0.000853494871203675], [5.329923498978961, -0.0008497548789103506], [5.3306190231791, -0.0008477434757503386]], [[5.3306190231791, -0.0008477434757503386], [5.338678513550079, -0.0008283850373018149], [5.3435779149257705, -0.0008191449587477842], [5.362336013490588, -0.0007906253987806865], [5.362312221464567, -0.0007908370279518582], [5.375757671456827, -0.0007743278040273772], [5.401932400672621, -0.0007477145584792295], [5.418353518133206, -0.0007332004959473707]], [[5.418353518133206, -0.0007332004959473707], [5.430312663563555, -0.0007233466632958056], [5.436516417313583, -0.000718504175601849], [5.4564265622277945, -0.000703616922115236], [5.456418025560322, -0.00070364775366453], [5.468606544450745, -0.0006950170240476476], [5.489675909103893, -0.000680875900518056], [5.504063026641929, -0.00031603314704987647]], [[5.504063026641929, -0.00031603314704987647], [5.569358857957687, -0.00030380659512340086], [5.603833913883038, -0.00029758772232309216], [5.721122638465224, -0.0002742894423615949], [5.7207188568985865, -0.00027492883402503634], [5.7966900457616495, -0.0002585122508370376], [5.93401257047844, -0.00022836778682326555], [6.016366213664616, -5.059411543810585e-5]], [[6.016366213664616, -5.059411543810585e-5], [6.130660579997308, -1.871986164525335e-5], [6.189912633125493, -2.7998255333261043e-6], [6.387724185752657, 5.607043144146987e-5], [6.3869747261251515, 5.429557482170954e-5], [6.5126562053814965, 9.519716784568049e-5], [6.736019818976878, 0.000168657557086495], [6.867862783640691, 0.00021461033005089596]], [[6.867862783640691, 0.00021461033005089596], [6.982298135451569, 6.981525418985664e-5], [7.040179898456975, 9.756931582677493e-5], [7.227047995179265, 0.0001710717832748643], [7.22650406359196, 0.00021301998125179255], [7.341091101300816, 0.00022094468885045654], [7.538451655242498, 0.00032496745438766444], [7.651428955913487, 0.00037248473688472703]], [[7.651428955913487, 0.00037248473688472703], [7.725814738815243, 0.00040841851149867135], [7.763258584125547, 0.00042610129167503907], [7.879699650254945, 0.0004829949273332185], [7.879613673933182, 0.00048266220960194], [7.948360140772276, 0.0005169768664943109], [8.063133949609211, 0.0003193441605835205], [8.124044693038988, 0.0003488745638642746]]], SciMLBase.ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Any}, SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}, SciMLBase.StandardODEProblem}(SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}(GasChromatographySimulator.odesystem_r!, LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, SciMLBase.DEFAULT_OBSERVED, nothing), [0.0, 0.0], (0.0, 2.05), Any[GasChromatographySimulator.Column(2.05, 0.000104, [0.000104], 1.04e-7, [1.04e-7], "FS5ms", "He"), GasChromatographySimulator.Program{GasChromatographySimulator.var"#gf#2"{String, Matrix{Float64}}}([0.0, 0.9200000000000003, 0.9100000000000007, 0.9199999999999986, 0.9199999999999995, 0.910000000000001, 0.9199999999999999, 0.9199999999999982, 0.9200000000000008, 0.9300000000000006 … 0.9199999999999875, 0.9100000000000108, 0.9200000000000017, 0.9099999999999966, 0.9200000000000017, 0.9099999999999966, 0.9200000000000017, 0.9099999999999966, 0.9099999999999966, 0.9200000000000017], [49.323, 48.954, 49.323, 49.077, 49.569, 49.446, 48.831, 49.323, 49.077, 49.077 … 63.099, 56.211, 51.414, 48.339, 46.74, 45.51, 44.895, 44.28, 43.911, 43.542], [354589.48, 354562.67000000004, 354589.48, 354571.61, 354607.32, 354598.4, 354553.72, 354589.48, 354571.61, 354571.61 … 355560.34, 355082.14, 354740.58, 354517.9, 354400.94, 354310.42000000004, 354264.98, 354219.43, 354192.04000000004, 354164.6], [230168.87, 230224.3, 230168.87, 230205.81999999998, 230131.96, 230150.41, 230242.79, 230168.87, 230205.81999999998, 230205.81999999998 … 228154.50999999998, 229148.40000000002, 229856.25, 230316.84999999998, 230558.51, 230745.38999999998, 230839.16, 230933.15000000002, 230989.65000000002, 231046.23], GasChromatographySimulator.var"#gf#2"{String, Matrix{Float64}}("outlet", [-2.829 0.0 2.05 -3.0; -2.46 0.0 2.05 -3.0; … ; -1.23 0.0 2.05 -3.0; -0.984 0.0 2.05 -3.0]), [-2.829 0.0 2.05 -3.0; -2.46 0.0 2.05 -3.0; … ; -1.23 0.0 2.05 -3.0; -0.984 0.0 2.05 -3.0], 2051×108 extrapolate(interpolate((0.0:0.001:2.05,::Vector{Float64}), ::Matrix{Float64}, Gridded(Linear())), Flat()) with element type Float64:
319.644 319.644 319.644 319.89 … 316.077 315.954 315.831 315.708
319.644 319.644 319.644 319.89 316.077 315.954 315.831 315.708
319.645 319.644 319.645 319.89 316.077 315.954 315.831 315.708
319.645 319.645 319.645 319.891 316.078 315.954 315.831 315.708
319.645 319.645 319.645 319.891 316.078 315.955 315.831 315.708
319.645 319.645 319.645 319.891 … 316.078 315.955 315.832 315.708
319.646 319.645 319.646 319.891 316.078 315.955 315.832 315.709
319.646 319.646 319.646 319.892 316.078 315.955 315.832 315.709
319.646 319.646 319.646 319.892 316.079 315.955 315.832 315.709
319.646 319.646 319.646 319.892 316.079 315.955 315.832 315.709
⋮ ⋱ ⋮
322.44 322.075 322.44 322.199 318.022 317.413 317.046 316.68
322.444 322.079 322.444 322.203 318.025 317.415 317.048 316.682
322.448 322.082 322.448 322.206 318.028 317.417 317.05 316.683
322.452 322.086 322.452 322.21 … 318.03 317.419 317.052 316.685
322.456 322.089 322.456 322.213 318.033 317.421 317.054 316.686
322.46 322.093 322.46 322.217 318.036 317.423 317.056 316.688
322.465 322.097 322.465 322.22 318.039 317.426 317.057 316.689
322.469 322.1 322.469 322.224 318.042 317.428 317.059 316.691
322.473 322.104 322.473 322.227 … 318.045 317.43 317.061 316.692, 108-element extrapolate(interpolate((::Vector{Float64},), ::Vector{Float64}, Gridded(Linear())), Flat()) with element type Float64:
354589.48
354562.67000000004
354589.48
354571.61
354607.32
354598.4
354553.72
354589.48
354571.61
354571.61
⋮
355082.14
354740.58
354517.9
354400.94
354310.42000000004
354264.98
354219.43
354192.04000000004
354164.6, 108-element extrapolate(interpolate((::Vector{Float64},), ::Vector{Float64}, Gridded(Linear())), Flat()) with element type Float64:
230168.87
230224.3
230168.87
230205.81999999998
230131.96
230150.41
230242.79
230168.87
230205.81999999998
230205.81999999998
⋮
229148.40000000002
229856.25
230316.84999999998
230558.51
230745.38999999998
230839.16
230933.15000000002
230989.65000000002
231046.23), GasChromatographySimulator.Substance("C27", "593-49-7", 599.77, 41.9, 184.17, 0.001, "Leppert2020b, alkane, alkanes", 7.054117055654164e-5, 0.0, 0.0), GasChromatographySimulator.Options(OwrenZen5(), 1.0e-6, 0.001, "inlet", true, false, "Blumberg", "Pressure")], Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}(), SciMLBase.StandardODEProblem()), OwrenZen5(), OrdinaryDiffEq.InterpolationData{SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}}(SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}(GasChromatographySimulator.odesystem_r!, LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, SciMLBase.DEFAULT_OBSERVED, nothing), [[0.0, 0.0], [1.2763855206843044, 23211.7995391023], [1.8052564732619063, 32830.86067259819], [1.839915037814302, 33434.97050543526], [1.8561103246666324, 33687.36574252497], [2.017509326886005, 36175.254977413664], [2.7395181618198303, 46711.46422463685], [2.9265060787007453, 49608.65488832182], [3.0073276302000367, 50863.522021291945], [3.469728026542556, 57925.789076859444] … [44.572568887172785, 0.0022893779691116225], [45.352182748405774, 0.0021989116767181494], [45.525458907012435, 0.0021774454683503104], [45.60478677151747, 0.002164703674231089], [46.17585134318182, 0.0020805718379300264], [46.46716513926591, 0.0020430221843219065], [47.37592097451978, 0.002000151637067177], [48.29385390612949, 0.002009390054068793], [48.94823095368651, 0.0020276786001882092], [49.28679330161679, 0.0020452967166361344]], [0.0, 1.549812643072404e-8, 2.191972931310239e-8, 2.2340579308302886e-8, 2.2537358640982475e-8, 2.4505151967778382e-8, 3.3459358194054676e-8, 3.5815393472289196e-8, 3.683637664065887e-8, 4.2708204283079887e-8 … 1.2606259550367571, 1.4075956060506303, 1.4401763416037194, 1.4550650100676017, 1.5614802468863813, 1.614857649591687, 1.773342036167375, 1.9166407767194713, 2.0070505611288474, 2.05], [[[0.0, 0.0]], [[8.235896374208628e7, 1.4978028826303857e12], [8.2358328040475e7, 1.497743613569072e12], [8.235801077705334e7, 1.497714034577947e12], [8.235706131520107e7, 1.4976255145045056e12], [8.235706131520157e7, 1.4976255145047751e12], [8.235652033923237e7, 1.4975750789564688e12], [8.235681543659939e7, 1.4978022376968032e12], [8.235729443558903e7, 1.4978472773144736e12]], [[8.235729443558903e7, 1.4978472773144736e12], [8.235755944450353e7, 1.4978721932194602e12], [8.235769205201866e7, 1.4978846609079153e12], [8.23580902828909e7, 1.4979221019660303e12], [8.235809028289089e7, 1.4979221019660098e12], [8.23583181192029e7, 1.4979435226498867e12], [8.235868878094295e7, 1.4979783712598047e12], [8.235888858734892e7, 1.4979971564037905e12]], [[8.235888858734892e7, 1.4979971564037905e12], [8.235890605414906e7, 1.4979987985711165e12], [8.235891478799124e7, 1.4979996196965525e12], [8.23589409912703e7, 1.4980020832358777e12], [8.235894099127029e7, 1.498002083235878e12], [8.23589559657564e7, 1.4980034910833337e12], [8.234122629642156e7, 1.2851202238273623e12], [8.232747547151712e7, 1.2843147128198843e12]], [[8.232747547151712e7, 1.2843147128198843e12], [8.231890289299548e7, 1.2837529328715042e12], [8.231461796087481e7, 1.2834722559363372e12], [8.230176457492808e7, 1.2826304125214043e12], [8.230176457618289e7, 1.2826304129796704e12], [8.229442163439365e7, 1.2821496344826072e12], [8.228249222667706e7, 1.281368796947207e12], [8.227607017079264e7, 1.2809485645899067e12]], [[8.227607017079264e7, 1.2809485645899067e12], [8.219049659028298e7, 1.2753527250918623e12], [8.214784502239802e7, 1.2725759788708765e12], [8.202002947179042e7, 1.2642639534910476e12], [8.202003072187552e7, 1.2642644098191025e12], [8.194717545341739e7, 1.2595413239497292e12], [8.182907105188732e7, 1.2519087799136294e12], [8.17656209261626e7, 1.247820114747188e12]], [[8.17656209261626e7, 1.247820114747188e12], [8.13819175685872e7, 1.223183070389239e12], [8.119279413164185e7, 1.2112836423794077e12], [8.062812391283412e7, 1.1759146774835203e12], [8.062823812223962e7, 1.1759558976849639e12], [8.030907684175347e7, 1.1562205304265784e12], [7.979614210481977e7, 1.1249937643791016e12], [7.952270753963144e7, 1.1085572180686128e12]], [[7.952270753963144e7, 1.1085572180686128e12], [7.945899572872148e7, 1.248513140069229e12], [7.943523981099835e7, 1.2468596918075374e12], [7.936398794057313e7, 1.2424185980751238e12], [7.936404602603225e7, 1.241390841019004e12], [7.932333663515578e7, 1.2397988161424048e12], [7.92573885050606e7, 1.235216888183767e12], [7.92219085343509e7, 1.2330421678932744e12]], [[7.92219085343509e7, 1.2330421678932744e12], [7.920142444506115e7, 1.231717698244633e12], [7.919119045250402e7, 1.231056706855583e12], [7.916049683085391e7, 1.2290748195519856e12], [7.916049684934458e7, 1.2290748261971174e12], [7.914296859371842e7, 1.2279439157092295e12], [7.911450221509829e7, 1.226108679200798e12], [7.909918287499148e7, 1.2251217444436768e12]], [[7.909918287499148e7, 1.2251217444436768e12], [7.898182640755753e7, 1.2175690924611304e12], [7.892341263751167e7, 1.21383339972355e12], [7.874844224904926e7, 1.2026608119925818e12], [7.874844573802792e7, 1.2026620629526375e12], [7.86488170023835e7, 1.1963282030835894e12], [7.848747780266182e7, 1.1861171223822837e12], [7.840088369572128e7, 1.1806589355026016e12]] … [[5.432698685738521, -0.001184448425923518], [5.410095011363922, -0.001158221200323942], [5.399556990115431, -0.0011458376657752945], [5.369823101036569, -0.0011088181147598775], [5.369862027931942, -0.0011090031025972344], [5.354362940503378, -0.0010883648470120916], [5.33160578536406, -0.0010561353715145831], [5.321613658378508, -0.0006535615524417581]], [[5.321613658378508, -0.0006535615524417581], [5.310264344016649, -0.0006407834165915857], [5.306098328736942, -0.0006346908343480566], [5.298851775648682, -0.000615693453680205], [5.298890394728696, -0.0006158762760329205], [5.298549606814219, -0.0006047529396405577], [5.304226498061543, -0.0005867273970311358], [5.310543408479821, -0.0005767871212763766]], [[5.310543408479821, -0.0005767871212763766], [5.312864296548729, -0.0005738061266739084], [5.314097544438558, -0.0005723265741133911], [5.318122666597057, -0.0005678257126452385], [5.31812228671365, -0.0005678281281388726], [5.320637398280165, -0.0005652348449922948], [5.324790044699547, -0.000870925333701836], [5.3258070482676585, -0.0008638866447102521]], [[5.3258070482676585, -0.0008638866447102521], [5.326490767812988, -0.0008611821777034737], [5.32684874507885, -0.0008598391197922623], [5.327998360604966, -0.0008557995794239845], [5.327998297371403, -0.0008558001149314297], [5.328703011575806, -0.000853494871203675], [5.329923498978961, -0.0008497548789103506], [5.3306190231791, -0.0008477434757503386]], [[5.3306190231791, -0.0008477434757503386], [5.338678513550079, -0.0008283850373018149], [5.3435779149257705, -0.0008191449587477842], [5.362336013490588, -0.0007906253987806865], [5.362312221464567, -0.0007908370279518582], [5.375757671456827, -0.0007743278040273772], [5.401932400672621, -0.0007477145584792295], [5.418353518133206, -0.0007332004959473707]], [[5.418353518133206, -0.0007332004959473707], [5.430312663563555, -0.0007233466632958056], [5.436516417313583, -0.000718504175601849], [5.4564265622277945, -0.000703616922115236], [5.456418025560322, -0.00070364775366453], [5.468606544450745, -0.0006950170240476476], [5.489675909103893, -0.000680875900518056], [5.504063026641929, -0.00031603314704987647]], [[5.504063026641929, -0.00031603314704987647], [5.569358857957687, -0.00030380659512340086], [5.603833913883038, -0.00029758772232309216], [5.721122638465224, -0.0002742894423615949], [5.7207188568985865, -0.00027492883402503634], [5.7966900457616495, -0.0002585122508370376], [5.93401257047844, -0.00022836778682326555], [6.016366213664616, -5.059411543810585e-5]], [[6.016366213664616, -5.059411543810585e-5], [6.130660579997308, -1.871986164525335e-5], [6.189912633125493, -2.7998255333261043e-6], [6.387724185752657, 5.607043144146987e-5], [6.3869747261251515, 5.429557482170954e-5], [6.5126562053814965, 9.519716784568049e-5], [6.736019818976878, 0.000168657557086495], [6.867862783640691, 0.00021461033005089596]], [[6.867862783640691, 0.00021461033005089596], [6.982298135451569, 6.981525418985664e-5], [7.040179898456975, 9.756931582677493e-5], [7.227047995179265, 0.0001710717832748643], [7.22650406359196, 0.00021301998125179255], [7.341091101300816, 0.00022094468885045654], [7.538451655242498, 0.00032496745438766444], [7.651428955913487, 0.00037248473688472703]], [[7.651428955913487, 0.00037248473688472703], [7.725814738815243, 0.00040841851149867135], [7.763258584125547, 0.00042610129167503907], [7.879699650254945, 0.0004829949273332185], [7.879613673933182, 0.00048266220960194], [7.948360140772276, 0.0005169768664943109], [8.063133949609211, 0.0003193441605835205], [8.124044693038988, 0.0003488745638642746]]], true, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}([49.28679330161679, 0.0020452967166361344], [48.94823095368651, 0.0020276786001882092], [7.651428955913487, 0.00037248473688472703], [7.725814738815243, 0.00040841851149867135], [7.763258584125547, 0.00042610129167503907], [7.879699650254945, 0.0004829949273332185], [7.879613673933182, 0.00048266220960194], [7.948360140772276, 0.0005169768664943109], [8.063133949609211, 0.0003193441605835205], [8.124044693038988, 0.0003488745638642746], [2.568367311451195e-6, 3.2212641331862212e-6], [49.243338826327374, 0.002045351287880333], [5.2109602386417744e-5, 1.0577833403191208], OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}(0.16666666666666666, 0.0625, 0.1875, 0.25, -0.75, -0.75, 3.75, -3.0, 0.5, 0.26895043731778423, -0.7084548104956269, 0.8658892128279884, 0.15462307371928363, 0.06184922948771345, -0.02947695035460993, 0.18500664893617022, 0.4802345261121857, -0.5337849069148937, -0.013090093085106383, 0.7861107753062541, 0.08783068783068783, 0.3006060606060606, 0.22777777777777777, 0.027777777777777776, 0.06218596218596219, 0.2938217338217338, 0.16666666666666666, 0.25, 0.5, 0.5, 0.6428571428571429, 0.875, -0.19894179894179895, 0.9115151515151515, -1.9777777777777779, -0.1111111111111111, 1.67013727013727, -0.2938217338217338, 1.892063492063492, -6.067155067155067, 7.282458282458283, -4.0195360195360195, -7.214545454545455, 20.676923076923078, -20.31142191142191, 7.14965034965035, 7.866666666666666, -18.78205128205128, 13.508547008547009, -2.3653846153846154, 2.0, -5.294871794871795, 4.534188034188034, -1.2115384615384615, -1.4924630924630924, 1.5785667324128863, 1.1958838881915805, -1.219801565955412, -7.051721611721612, 16.273203719357564, -11.978886071193763, 3.0512256973795435, 4.0, -8.384615384615385, 5.769230769230769, -1.3846153846153846))), true, 0, DiffEqBase.DEStats
Number of function 1 evaluations: 3083
Number of function 2 evaluations: 0
Number of W matrix evaluations: 0
Number of linear solves: 0
Number of Jacobians created: 0
Number of nonlinear solver iterations: 0
Number of nonlinear solver convergence failures: 0
Number of rootfind condition calls: 0
Number of accepted steps: 205
Number of rejected steps: 235, :Success), SciMLBase.ODESolution{Float64, 2, Vector{Vector{Float64}}, Nothing, Nothing, Vector{Float64}, Vector{Vector{Vector{Float64}}}, SciMLBase.ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Any}, SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}, SciMLBase.StandardODEProblem}, OwrenZen5, OrdinaryDiffEq.InterpolationData{SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}}, DiffEqBase.DEStats}([[0.0, 0.0], [1.429602060355196, 56882.31746531508], [1.778741353549052, 70776.11279508055], [1.8351492198142445, 73020.90071201097], [2.392910826174054, 91325.223672583], [2.762697532964058, 102755.73121056725], [3.7175130521775888, 134510.8175908241], [4.689719054345256, 191199.69908095867], [5.345200050462381, 217264.58492655394], [5.5002997255254975, 223431.45610631164] … [45.49487571286387, 0.0024592565909014], [45.826170321748315, 0.002390618216667826], [45.967959358713145, 0.0023617513779607886], [46.44328005180119, 0.002270989272784106], [47.30350219436338, 0.0021934299007536143], [48.23404610906634, 0.0021406850904207753], [48.68769103008878, 0.002109972969570512], [49.12933335913376, 0.0020883213116931524], [50.229426182253455, 0.0020714131507694688], [50.623035794136136, 0.002091182121915014]], nothing, nothing, [0.0, 8.07545509485015e-9, 1.004763260929932e-8, 1.0366260448346267e-8, 1.3552538838815729e-8, 1.570407536721709e-8, 2.13517240898062e-8, 2.6969407225238176e-8, 3.06720374103299e-8, 3.154817376401314e-8 … 1.202747572214713, 1.263085252478595, 1.2891375717057711, 1.377130694434667, 1.5353944944077083, 1.6989659795933427, 1.7740760279514074, 1.8437252231283232, 2.00018503445471, 2.05], [[[0.0, 0.0]], [[1.7703385331299692e8, 7.044256023781963e12], [1.7703232309085152e8, 7.043943562281746e12], [1.770315595634889e8, 7.043787658944181e12], [1.7702927525958094e8, 7.043321227611183e12], [1.7702927525958234e8, 7.043321227612955e12], [1.7702797418637484e8, 7.043055564153957e12], [1.7703010071258292e8, 7.044430189167854e12], [1.7703125592781132e8, 7.044668080122495e12]], [[1.7703125592781132e8, 7.044668080122495e12], [1.770316326054906e8, 7.044745639059466e12], [1.7703182104086906e8, 7.044784438466319e12], [1.7703238672951007e8, 7.044900914488216e12], [1.7703238672951007e8, 7.044900914488188e12], [1.7703271023855215e8, 7.044967525040752e12], [1.7703323634148774e8, 7.045075849114283e12], [1.7703351983317083e8, 7.045134219468961e12]], [[1.7703351983317083e8, 7.045134219468961e12], [1.770335809204217e8, 7.045146797177047e12], [1.7703361146656412e8, 7.045153086551087e12], [1.7703370311497548e8, 7.045171956702983e12], [1.7703370311497548e8, 7.045171956702983e12], [1.7703375549223545e8, 7.045182741024886e12], [1.7703384061574385e8, 7.045200267685921e12], [1.7699775981511104e8, 6.017768253387709e12]], [[1.7699775981511104e8, 6.017768253387709e12], [1.763402737846106e8, 5.923959416986525e12], [1.7601523245928556e8, 5.878318350327801e12], [1.750438062406881e8, 5.742411277707414e12], [1.7504392884050122e8, 5.742509371310096e12], [1.744936459032141e8, 5.666322535297441e12], [1.7360718898554292e8, 5.545055999861714e12], [1.7313366608174098e8, 5.480929411087627e12]], [[1.7313366608174098e8, 5.480929411087627e12], [1.7270908442936772e8, 5.423717400577005e12], [1.724983732071014e8, 5.39562256564289e12], [1.7186783898544022e8, 5.311763728148537e12], [1.718678734802615e8, 5.311789830671842e12], [1.715096577465396e8, 5.264489475941271e12], [1.7093087653689027e8, 5.188652522159804e12], [1.7066382361819312e8, 5.846477326043785e12]], [[1.7066382361819312e8, 5.846477326043785e12], [1.7012461594274676e8, 5.769946409525135e12], [1.6985759536009797e8, 5.732555238114766e12], [1.6905912993201736e8, 5.62109258767562e12], [1.690592026588097e8, 5.621150224328621e12], [1.6860632315484297e8, 5.558493095291199e12], [1.6787581231522703e8, 5.458428538906062e12], [1.6811909305512738e8, 9.047075958724635e12]], [[1.6811909305512738e8, 9.047075958724635e12], [1.6971047518366823e8, 9.369011755328488e12], [1.7052922032959569e8, 9.540858899495982e12], [1.7301183534229264e8, 1.0067885458273115e13], [1.7300991799097395e8, 1.0065829009378799e13], [1.7446381301943675e8, 1.0384472115345879e13], [1.7687705137547353e8, 1.0924595051869125e13], [1.77034687314818e8, 7.04024901353562e12]], [[1.77034687314818e8, 7.04024901353562e12], [1.7703351501167035e8, 7.04001844876421e12], [1.7703292978450397e8, 7.039903358402054e12], [1.7703117776697022e8, 7.039558837915214e12], [1.770311777669709e8, 7.039558837915983e12], [1.770301790903022e8, 7.039362478781939e12], [1.7702856008328736e8, 7.039044186257171e12], [1.7702769028150254e8, 7.0388732038254795e12]], [[1.7702769028150254e8, 7.0388732038254795e12], [1.7702741614478675e8, 7.03881931764438e12], [1.7702727912827528e8, 7.038792385326273e12], [1.7702686828422594e8, 7.038711630491088e12], [1.77026868284226e8, 7.038711630491099e12], [1.7702663365502736e8, 7.038665513458649e12], [1.7702625259794745e8, 7.038590617630174e12], [1.770239535055962e8, 3.9164137180789565e12]] … [[5.672416784356731, -0.0009180129146677705], [5.643706882295107, -0.0009033031903719437], [5.630352356091504, -0.0008963143834529838], [5.592602933366565, -0.0008752371537931927], [5.592665929139707, -0.0008753487901404229], [5.572969984309211, -0.0008634776513774291], [5.544060754364401, -0.000844778203538368], [5.530012178494464, -0.0008348767810345795]], [[5.530012178494464, -0.0008348767810345795], [5.516070351770553, -0.0012056851595774118], [5.509246041812914, -0.0011940353514217944], [5.489661846083166, -0.0011776159852784898], [5.489654799793411, -0.001140009787302792], [5.479178341831723, -0.0011652463465494814], [5.463232287386759, -0.00113315283319621], [5.455209849503083, -0.0011266269115478966]], [[5.455209849503083, -0.0011266269115478966], [5.450761846212656, -0.0011203371079114822], [5.448597542297447, -0.001117241750721434], [5.442277017020152, -0.0011079631218902518], [5.442277679312815, -0.001107966918748079], [5.438797387473436, -0.001102708580329044], [5.433347083993699, -0.0010942419514239536], [5.430517190220042, -0.001089718257702695]], [[5.430517190220042, -0.001089718257702695], [5.418616856789476, -0.0010694225646732812], [5.413329429908524, -0.0010597931076895117], [5.399513817463435, -0.0010308438739760673], [5.399534043721847, -0.0010309861633280995], [5.393151780490902, -0.0010147301266036864], [5.385215394602979, -0.0009891488596568058], [5.382520225254531, -0.0005081727144900573]], [[5.382520225254531, -0.0005081727144900573], [5.393181546612506, -0.0005029106190364298], [5.400059951082088, -0.0005002495136411803], [5.4279755430184204, -0.0004910517025573111], [5.42791715979606, -0.0004911802165632516], [5.448848747572291, -0.00048515325993216986], [5.4908741082973345, -0.0004743978660754953], [5.5179023515748495, -0.0004678761283874824]], [[5.5179023515748495, -0.0004678761283874824], [5.563133669551138, -0.00034032490963413747], [5.588534499058306, -0.00033722205111717026], [5.676910319425625, -0.0003101199673301593], [5.6768493946336624, -0.00034087307332377305], [5.73524788079858, -0.0002950315859435596], [5.8433666079975115, -0.0002775098085372263], [5.908929990091985, -0.00025653260912729273]], [[5.908929990091985, -0.00025653260912729273], [5.952008427870627, -0.00024508632126502483], [5.972196638791619, -0.0004603078419968625], [6.036594232806206, -0.00041314980364358204], [6.036296323875916, -0.0005149313476520449], [6.075731997310372, -0.0003990249042178039], [6.143081046732272, -0.0003906057732307208], [6.181475823106315, -0.0003734659972536702]], [[6.181475823106315, -0.0003734659972536702], [6.231229268244659, -0.0003538274049709575], [6.256596395802459, -0.00034409722708698227], [6.33714754966621, -0.00031247028967830784], [6.337067117065974, -0.00031267966749360917], [6.3857185861085854, -0.00029333659121755836], [6.468774881880989, -0.0002604540786437159], [6.515723109818983, -0.00024170292285170033]], [[6.515723109818983, -0.00024170292285170033], [6.667420554946282, -0.00022379263942099142], [6.745107218462451, -0.0002018534800588721], [7.006918128245675, -0.00012339378148652075], [7.005070300667804, -0.00011748134416705077], [7.1725891921628335, -7.040509010268307e-5], [7.469196447496068, 3.2632492443373726e-5], [7.647114992295199, 0.00029300820093719135]], [[7.647114992295199, 0.00029300820093719135], [7.728682318568951, 0.0003259698080650998], [7.769712817635248, 0.0003420810039558063], [7.897715132231243, 0.0003945729700975094], [7.897589174660616, 0.00039412928364468153], [7.973348685009508, 0.0004260850204644666], [8.100241539285427, 0.0004797528096584895], [8.17070235399899, 0.0005100845533404274]]], SciMLBase.ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Any}, SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}, SciMLBase.StandardODEProblem}(SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}(GasChromatographySimulator.odesystem_r!, LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, SciMLBase.DEFAULT_OBSERVED, nothing), [0.0, 0.0], (0.0, 2.05), Any[GasChromatographySimulator.Column(2.05, 0.000104, [0.000104], 1.04e-7, [1.04e-7], "FS5ms", "He"), GasChromatographySimulator.Program{GasChromatographySimulator.var"#gf#2"{String, Matrix{Float64}}}([0.0, 0.9200000000000003, 0.9100000000000007, 0.9199999999999986, 0.9199999999999995, 0.910000000000001, 0.9199999999999999, 0.9199999999999982, 0.9200000000000008, 0.9300000000000006 … 0.9199999999999875, 0.9100000000000108, 0.9200000000000017, 0.9099999999999966, 0.9200000000000017, 0.9099999999999966, 0.9200000000000017, 0.9099999999999966, 0.9099999999999966, 0.9200000000000017], [49.323, 48.954, 49.323, 49.077, 49.569, 49.446, 48.831, 49.323, 49.077, 49.077 … 63.099, 56.211, 51.414, 48.339, 46.74, 45.51, 44.895, 44.28, 43.911, 43.542], [354589.48, 354562.67000000004, 354589.48, 354571.61, 354607.32, 354598.4, 354553.72, 354589.48, 354571.61, 354571.61 … 355560.34, 355082.14, 354740.58, 354517.9, 354400.94, 354310.42000000004, 354264.98, 354219.43, 354192.04000000004, 354164.6], [230168.87, 230224.3, 230168.87, 230205.81999999998, 230131.96, 230150.41, 230242.79, 230168.87, 230205.81999999998, 230205.81999999998 … 228154.50999999998, 229148.40000000002, 229856.25, 230316.84999999998, 230558.51, 230745.38999999998, 230839.16, 230933.15000000002, 230989.65000000002, 231046.23], GasChromatographySimulator.var"#gf#2"{String, Matrix{Float64}}("outlet", [-2.829 0.0 2.05 -3.0; -2.46 0.0 2.05 -3.0; … ; -1.23 0.0 2.05 -3.0; -0.984 0.0 2.05 -3.0]), [-2.829 0.0 2.05 -3.0; -2.46 0.0 2.05 -3.0; … ; -1.23 0.0 2.05 -3.0; -0.984 0.0 2.05 -3.0], 2051×108 extrapolate(interpolate((0.0:0.001:2.05,::Vector{Float64}), ::Matrix{Float64}, Gridded(Linear())), Flat()) with element type Float64:
319.644 319.644 319.644 319.89 … 316.077 315.954 315.831 315.708
319.644 319.644 319.644 319.89 316.077 315.954 315.831 315.708
319.645 319.644 319.645 319.89 316.077 315.954 315.831 315.708
319.645 319.645 319.645 319.891 316.078 315.954 315.831 315.708
319.645 319.645 319.645 319.891 316.078 315.955 315.831 315.708
319.645 319.645 319.645 319.891 … 316.078 315.955 315.832 315.708
319.646 319.645 319.646 319.891 316.078 315.955 315.832 315.709
319.646 319.646 319.646 319.892 316.078 315.955 315.832 315.709
319.646 319.646 319.646 319.892 316.079 315.955 315.832 315.709
319.646 319.646 319.646 319.892 316.079 315.955 315.832 315.709
⋮ ⋱ ⋮
322.44 322.075 322.44 322.199 318.022 317.413 317.046 316.68
322.444 322.079 322.444 322.203 318.025 317.415 317.048 316.682
322.448 322.082 322.448 322.206 318.028 317.417 317.05 316.683
322.452 322.086 322.452 322.21 … 318.03 317.419 317.052 316.685
322.456 322.089 322.456 322.213 318.033 317.421 317.054 316.686
322.46 322.093 322.46 322.217 318.036 317.423 317.056 316.688
322.465 322.097 322.465 322.22 318.039 317.426 317.057 316.689
322.469 322.1 322.469 322.224 318.042 317.428 317.059 316.691
322.473 322.104 322.473 322.227 … 318.045 317.43 317.061 316.692, 108-element extrapolate(interpolate((::Vector{Float64},), ::Vector{Float64}, Gridded(Linear())), Flat()) with element type Float64:
354589.48
354562.67000000004
354589.48
354571.61
354607.32
354598.4
354553.72
354589.48
354571.61
354571.61
⋮
355082.14
354740.58
354517.9
354400.94
354310.42000000004
354264.98
354219.43
354192.04000000004
354164.6, 108-element extrapolate(interpolate((::Vector{Float64},), ::Vector{Float64}, Gridded(Linear())), Flat()) with element type Float64:
230168.87
230224.3
230168.87
230205.81999999998
230131.96
230150.41
230242.79
230168.87
230205.81999999998
230205.81999999998
⋮
229148.40000000002
229856.25
230316.84999999998
230558.51
230745.38999999998
230839.16
230933.15000000002
230989.65000000002
231046.23), GasChromatographySimulator.Substance("C28", "630-2-4", 607.3399999999999, 41.82, 183.91, 0.001, "Leppert2020b, alkane", 6.915867131183108e-5, 0.0, 0.0), GasChromatographySimulator.Options(OwrenZen5(), 1.0e-6, 0.001, "inlet", true, false, "Blumberg", "Pressure")], Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}(), SciMLBase.StandardODEProblem()), OwrenZen5(), OrdinaryDiffEq.InterpolationData{SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}}(SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}(GasChromatographySimulator.odesystem_r!, LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, SciMLBase.DEFAULT_OBSERVED, nothing), [[0.0, 0.0], [1.429602060355196, 56882.31746531508], [1.778741353549052, 70776.11279508055], [1.8351492198142445, 73020.90071201097], [2.392910826174054, 91325.223672583], [2.762697532964058, 102755.73121056725], [3.7175130521775888, 134510.8175908241], [4.689719054345256, 191199.69908095867], [5.345200050462381, 217264.58492655394], [5.5002997255254975, 223431.45610631164] … [45.49487571286387, 0.0024592565909014], [45.826170321748315, 0.002390618216667826], [45.967959358713145, 0.0023617513779607886], [46.44328005180119, 0.002270989272784106], [47.30350219436338, 0.0021934299007536143], [48.23404610906634, 0.0021406850904207753], [48.68769103008878, 0.002109972969570512], [49.12933335913376, 0.0020883213116931524], [50.229426182253455, 0.0020714131507694688], [50.623035794136136, 0.002091182121915014]], [0.0, 8.07545509485015e-9, 1.004763260929932e-8, 1.0366260448346267e-8, 1.3552538838815729e-8, 1.570407536721709e-8, 2.13517240898062e-8, 2.6969407225238176e-8, 3.06720374103299e-8, 3.154817376401314e-8 … 1.202747572214713, 1.263085252478595, 1.2891375717057711, 1.377130694434667, 1.5353944944077083, 1.6989659795933427, 1.7740760279514074, 1.8437252231283232, 2.00018503445471, 2.05], [[[0.0, 0.0]], [[1.7703385331299692e8, 7.044256023781963e12], [1.7703232309085152e8, 7.043943562281746e12], [1.770315595634889e8, 7.043787658944181e12], [1.7702927525958094e8, 7.043321227611183e12], [1.7702927525958234e8, 7.043321227612955e12], [1.7702797418637484e8, 7.043055564153957e12], [1.7703010071258292e8, 7.044430189167854e12], [1.7703125592781132e8, 7.044668080122495e12]], [[1.7703125592781132e8, 7.044668080122495e12], [1.770316326054906e8, 7.044745639059466e12], [1.7703182104086906e8, 7.044784438466319e12], [1.7703238672951007e8, 7.044900914488216e12], [1.7703238672951007e8, 7.044900914488188e12], [1.7703271023855215e8, 7.044967525040752e12], [1.7703323634148774e8, 7.045075849114283e12], [1.7703351983317083e8, 7.045134219468961e12]], [[1.7703351983317083e8, 7.045134219468961e12], [1.770335809204217e8, 7.045146797177047e12], [1.7703361146656412e8, 7.045153086551087e12], [1.7703370311497548e8, 7.045171956702983e12], [1.7703370311497548e8, 7.045171956702983e12], [1.7703375549223545e8, 7.045182741024886e12], [1.7703384061574385e8, 7.045200267685921e12], [1.7699775981511104e8, 6.017768253387709e12]], [[1.7699775981511104e8, 6.017768253387709e12], [1.763402737846106e8, 5.923959416986525e12], [1.7601523245928556e8, 5.878318350327801e12], [1.750438062406881e8, 5.742411277707414e12], [1.7504392884050122e8, 5.742509371310096e12], [1.744936459032141e8, 5.666322535297441e12], [1.7360718898554292e8, 5.545055999861714e12], [1.7313366608174098e8, 5.480929411087627e12]], [[1.7313366608174098e8, 5.480929411087627e12], [1.7270908442936772e8, 5.423717400577005e12], [1.724983732071014e8, 5.39562256564289e12], [1.7186783898544022e8, 5.311763728148537e12], [1.718678734802615e8, 5.311789830671842e12], [1.715096577465396e8, 5.264489475941271e12], [1.7093087653689027e8, 5.188652522159804e12], [1.7066382361819312e8, 5.846477326043785e12]], [[1.7066382361819312e8, 5.846477326043785e12], [1.7012461594274676e8, 5.769946409525135e12], [1.6985759536009797e8, 5.732555238114766e12], [1.6905912993201736e8, 5.62109258767562e12], [1.690592026588097e8, 5.621150224328621e12], [1.6860632315484297e8, 5.558493095291199e12], [1.6787581231522703e8, 5.458428538906062e12], [1.6811909305512738e8, 9.047075958724635e12]], [[1.6811909305512738e8, 9.047075958724635e12], [1.6971047518366823e8, 9.369011755328488e12], [1.7052922032959569e8, 9.540858899495982e12], [1.7301183534229264e8, 1.0067885458273115e13], [1.7300991799097395e8, 1.0065829009378799e13], [1.7446381301943675e8, 1.0384472115345879e13], [1.7687705137547353e8, 1.0924595051869125e13], [1.77034687314818e8, 7.04024901353562e12]], [[1.77034687314818e8, 7.04024901353562e12], [1.7703351501167035e8, 7.04001844876421e12], [1.7703292978450397e8, 7.039903358402054e12], [1.7703117776697022e8, 7.039558837915214e12], [1.770311777669709e8, 7.039558837915983e12], [1.770301790903022e8, 7.039362478781939e12], [1.7702856008328736e8, 7.039044186257171e12], [1.7702769028150254e8, 7.0388732038254795e12]], [[1.7702769028150254e8, 7.0388732038254795e12], [1.7702741614478675e8, 7.03881931764438e12], [1.7702727912827528e8, 7.038792385326273e12], [1.7702686828422594e8, 7.038711630491088e12], [1.77026868284226e8, 7.038711630491099e12], [1.7702663365502736e8, 7.038665513458649e12], [1.7702625259794745e8, 7.038590617630174e12], [1.770239535055962e8, 3.9164137180789565e12]] … [[5.672416784356731, -0.0009180129146677705], [5.643706882295107, -0.0009033031903719437], [5.630352356091504, -0.0008963143834529838], [5.592602933366565, -0.0008752371537931927], [5.592665929139707, -0.0008753487901404229], [5.572969984309211, -0.0008634776513774291], [5.544060754364401, -0.000844778203538368], [5.530012178494464, -0.0008348767810345795]], [[5.530012178494464, -0.0008348767810345795], [5.516070351770553, -0.0012056851595774118], [5.509246041812914, -0.0011940353514217944], [5.489661846083166, -0.0011776159852784898], [5.489654799793411, -0.001140009787302792], [5.479178341831723, -0.0011652463465494814], [5.463232287386759, -0.00113315283319621], [5.455209849503083, -0.0011266269115478966]], [[5.455209849503083, -0.0011266269115478966], [5.450761846212656, -0.0011203371079114822], [5.448597542297447, -0.001117241750721434], [5.442277017020152, -0.0011079631218902518], [5.442277679312815, -0.001107966918748079], [5.438797387473436, -0.001102708580329044], [5.433347083993699, -0.0010942419514239536], [5.430517190220042, -0.001089718257702695]], [[5.430517190220042, -0.001089718257702695], [5.418616856789476, -0.0010694225646732812], [5.413329429908524, -0.0010597931076895117], [5.399513817463435, -0.0010308438739760673], [5.399534043721847, -0.0010309861633280995], [5.393151780490902, -0.0010147301266036864], [5.385215394602979, -0.0009891488596568058], [5.382520225254531, -0.0005081727144900573]], [[5.382520225254531, -0.0005081727144900573], [5.393181546612506, -0.0005029106190364298], [5.400059951082088, -0.0005002495136411803], [5.4279755430184204, -0.0004910517025573111], [5.42791715979606, -0.0004911802165632516], [5.448848747572291, -0.00048515325993216986], [5.4908741082973345, -0.0004743978660754953], [5.5179023515748495, -0.0004678761283874824]], [[5.5179023515748495, -0.0004678761283874824], [5.563133669551138, -0.00034032490963413747], [5.588534499058306, -0.00033722205111717026], [5.676910319425625, -0.0003101199673301593], [5.6768493946336624, -0.00034087307332377305], [5.73524788079858, -0.0002950315859435596], [5.8433666079975115, -0.0002775098085372263], [5.908929990091985, -0.00025653260912729273]], [[5.908929990091985, -0.00025653260912729273], [5.952008427870627, -0.00024508632126502483], [5.972196638791619, -0.0004603078419968625], [6.036594232806206, -0.00041314980364358204], [6.036296323875916, -0.0005149313476520449], [6.075731997310372, -0.0003990249042178039], [6.143081046732272, -0.0003906057732307208], [6.181475823106315, -0.0003734659972536702]], [[6.181475823106315, -0.0003734659972536702], [6.231229268244659, -0.0003538274049709575], [6.256596395802459, -0.00034409722708698227], [6.33714754966621, -0.00031247028967830784], [6.337067117065974, -0.00031267966749360917], [6.3857185861085854, -0.00029333659121755836], [6.468774881880989, -0.0002604540786437159], [6.515723109818983, -0.00024170292285170033]], [[6.515723109818983, -0.00024170292285170033], [6.667420554946282, -0.00022379263942099142], [6.745107218462451, -0.0002018534800588721], [7.006918128245675, -0.00012339378148652075], [7.005070300667804, -0.00011748134416705077], [7.1725891921628335, -7.040509010268307e-5], [7.469196447496068, 3.2632492443373726e-5], [7.647114992295199, 0.00029300820093719135]], [[7.647114992295199, 0.00029300820093719135], [7.728682318568951, 0.0003259698080650998], [7.769712817635248, 0.0003420810039558063], [7.897715132231243, 0.0003945729700975094], [7.897589174660616, 0.00039412928364468153], [7.973348685009508, 0.0004260850204644666], [8.100241539285427, 0.0004797528096584895], [8.17070235399899, 0.0005100845533404274]]], true, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}([50.623035794136136, 0.002091182121915014], [50.229426182253455, 0.0020714131507694688], [7.647114992295199, 0.00029300820093719135], [7.728682318568951, 0.0003259698080650998], [7.769712817635248, 0.0003420810039558063], [7.897715132231243, 0.0003945729700975094], [7.897589174660616, 0.00039412928364468153], [7.973348685009508, 0.0004260850204644666], [8.100241539285427, 0.0004797528096584895], [8.17070235399899, 0.0005100845533404274], [2.2636213447218422e-7, 4.6405327782619644e-10], [50.57238241075749, 0.002088107263727805], [4.471435967544968e-6, 0.00015012162322506945], OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}(0.16666666666666666, 0.0625, 0.1875, 0.25, -0.75, -0.75, 3.75, -3.0, 0.5, 0.26895043731778423, -0.7084548104956269, 0.8658892128279884, 0.15462307371928363, 0.06184922948771345, -0.02947695035460993, 0.18500664893617022, 0.4802345261121857, -0.5337849069148937, -0.013090093085106383, 0.7861107753062541, 0.08783068783068783, 0.3006060606060606, 0.22777777777777777, 0.027777777777777776, 0.06218596218596219, 0.2938217338217338, 0.16666666666666666, 0.25, 0.5, 0.5, 0.6428571428571429, 0.875, -0.19894179894179895, 0.9115151515151515, -1.9777777777777779, -0.1111111111111111, 1.67013727013727, -0.2938217338217338, 1.892063492063492, -6.067155067155067, 7.282458282458283, -4.0195360195360195, -7.214545454545455, 20.676923076923078, -20.31142191142191, 7.14965034965035, 7.866666666666666, -18.78205128205128, 13.508547008547009, -2.3653846153846154, 2.0, -5.294871794871795, 4.534188034188034, -1.2115384615384615, -1.4924630924630924, 1.5785667324128863, 1.1958838881915805, -1.219801565955412, -7.051721611721612, 16.273203719357564, -11.978886071193763, 3.0512256973795435, 4.0, -8.384615384615385, 5.769230769230769, -1.3846153846153846))), true, 0, DiffEqBase.DEStats
Number of function 1 evaluations: 3020
Number of function 2 evaluations: 0
Number of W matrix evaluations: 0
Number of linear solves: 0
Number of Jacobians created: 0
Number of nonlinear solver iterations: 0
Number of nonlinear solver convergence failures: 0
Number of rootfind condition calls: 0
Number of accepted steps: 207
Number of rejected steps: 224, :Success), SciMLBase.ODESolution{Float64, 2, Vector{Vector{Float64}}, Nothing, Nothing, Vector{Float64}, Vector{Vector{Vector{Float64}}}, SciMLBase.ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Any}, SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}, SciMLBase.StandardODEProblem}, OwrenZen5, OrdinaryDiffEq.InterpolationData{SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}}, DiffEqBase.DEStats}([[0.0, 0.0], [1.353950782485259, 115581.61570052925], [1.8030657280758542, 153926.00795229033], [1.8374938210156222, 156736.82343166316], [1.8534860705892038, 157897.03524953965], [2.0128405030905436, 169326.6640442685], [2.712247692759825, 216750.66850079567], [2.891545459528724, 229706.98819819855], [2.969024470608358, 235319.33935133554], [3.7372243330464534, 289484.2539375773] … [46.455362498341124, 0.0025559435202245277], [47.12631411855227, 0.002471722955819621], [48.30780543189041, 0.0023515213408450207], [48.77760695322967, 0.0022915327254370964], [49.203323095618295, 0.0022423396355875412], [50.20564999592017, 0.0021631357341228767], [50.69202200606419, 0.002146691134560216], [51.324964417418656, 0.002139988549583441], [51.644516579344355, 0.0021414942693056896], [51.93032028538035, 0.002146999045635138]], nothing, nothing, [0.0, 3.6265939333372994e-9, 4.8295489330527974e-9, 4.9217673217196995e-9, 4.964629119198694e-9, 5.3932470939886395e-9, 7.3075493520358506e-9, 7.806530896578124e-9, 8.022727214497269e-9, 1.0184690393688723e-8 … 1.1586068596439265, 1.278329735480366, 1.4904667806565701, 1.5732895142592405, 1.6468079771694424, 1.8106164594071357, 1.8840317094462427, 1.972655500307139, 2.0143759220553137, 2.05], [[[0.0, 0.0]], [[3.7334653948362225e8, 3.1872405468489234e13], [3.73343482993236e8, 3.187106521153891e13], [3.7334195774350405e8, 3.1870396410824516e13], [3.7333739386866015e8, 3.186839519371569e13], [3.733373938686627e8, 3.186839519372254e13], [3.7333479396567965e8, 3.186725516374732e13], [3.7333772475762147e8, 3.1872791960610953e13], [3.7334003017769676e8, 3.187381144145828e13]], [[3.7334003017769676e8, 3.187381144145828e13], [3.7334105123455685e8, 3.187426291138057e13], [3.7334156209993637e8, 3.1874488795544117e13], [3.7334309603107953e8, 3.187516703020632e13], [3.7334309603107953e8, 3.1875167030206066e13], [3.733439734649601e8, 3.187555498814151e13], [3.733454006935727e8, 3.1876186032767344e13], [3.733461699183988e8, 3.1876526140321473e13]], [[3.733461699183988e8, 3.1876526140321473e13], [3.733462485715731e8, 3.187656091617601e13], [3.7334628790013784e8, 3.1876578304979227e13], [3.733464058936852e8, 3.187663047480942e13], [3.733464058936852e8, 3.187663047480942e13], [3.733464733238652e8, 3.187666028846219e13], [3.732981979661716e8, 2.7123345596473074e13], [3.732330401258126e8, 2.710566041459371e13]], [[3.732330401258126e8, 2.710566041459371e13], [3.7319266685755235e8, 2.7093319001284355e13], [3.7317248685779756e8, 2.7087153156218363e13], [3.731119537372153e8, 2.706865989037851e13], [3.731119537435958e8, 2.7068659901249145e13], [3.730773724260221e8, 2.7058098590051363e13], [3.73021191816925e8, 2.704094621095589e13], [3.729909479063241e8, 2.703171530066831e13]], [[3.729909479063241e8, 2.703171530066831e13], [3.725879583444065e8, 2.690880188929146e13], [3.723871245127453e8, 2.6847828257644598e13], [3.717853013169337e8, 2.66653218554524e13], [3.7178530766962636e8, 2.666533267798853e13], [3.714422980636194e8, 2.6561650214906023e13], [3.708863012798328e8, 2.639413476038496e13], [3.7058762398098594e8, 2.630441628147444e13]], [[3.7058762398098594e8, 2.630441628147444e13], [3.688149551287259e8, 2.5773883471822188e13], [3.679414573046032e8, 2.5517815235589695e13], [3.653336257819473e8, 2.475681006904855e13], [3.653341740202484e8, 2.4757733016274465e13], [3.638604549493572e8, 2.433327540924147e13], [3.6149246855604804e8, 2.3662036366454895e13], [3.6023036363968986e8, 2.3308869062945758e13]], [[3.6023036363968986e8, 2.3308869062945758e13], [3.5979358096693873e8, 2.318730422154972e13], [3.5962816379045516e8, 2.634313136253159e13], [3.5930276718802303e8, 2.6226884226778145e13], [3.5930284145775265e8, 2.6308148271579902e13], [3.5911706677078414e8, 2.6171962478389242e13], [3.588158822691223e8, 2.6094658983588586e13], [3.5865377973009074e8, 2.6044072818182996e13]], [[3.5865377973009074e8, 2.6044072818182996e13], [3.58560235040309e8, 2.6015825771502457e13], [3.585134997573744e8, 2.6001728990167812e13], [3.583733322791576e8, 2.59594619786988e13], [3.583733323650733e8, 2.595946212294032e13], [3.5829328705321044e8, 2.5935343860730477e13], [3.5816329177565604e8, 2.5896205273201746e13], [3.580933343753493e8, 2.587515793602041e13]], [[3.580933343753493e8, 2.587515793602041e13], [3.5716203167240185e8, 2.559542941907937e13], [3.5670005310846394e8, 2.545819876819471e13], [3.553178267661847e8, 2.5048677726189312e13], [3.553179118663863e8, 2.5048820433452508e13], [3.545329158510761e8, 2.4817978209016555e13], [3.5326500983049613e8, 2.444813813555445e13], [3.545227019629088e8, 4.127258006323965e13]] … [[5.721202861462882, -0.0014137328745364402], [5.70983859995487, -0.0014024065518981632], [5.704281698955224, -0.0013968751701482654], [5.687874922382427, -0.0013803352928691824], [5.687878092927398, -0.0013803480278614436], [5.67873093387923, -0.0013710259396793713], [5.6642265183859, -0.0013561129867956804], [5.658481516171169, -0.0007209801927764896]], [[5.658481516171169, -0.0007209801927764896], [5.636890883253181, -0.0007151631501146789], [5.62715229183182, -0.0007123204243241832], [5.600824068158735, -0.0007035363352500168], [5.600878138021108, -0.0007035703537601776], [5.588052477883331, -0.0006984689274742513], [5.570859646888645, -0.000690153307990311], [5.563434233713065, -0.0006856205618094224]], [[5.563434233713065, -0.0006856205618094224], [5.550941515819979, -0.0006745140190803135], [5.548752519195575, -0.000571845846259468], [5.556380059400798, -0.0005759529816550145], [5.556524056694057, -0.00047677552109678164], [5.569138963378301, -0.0005645425645211034], [5.603918182733788, -0.0005274079992455116], [5.6301193882903835, -0.0005185622517914854]], [[5.6301193882903835, -0.0005185622517914854], [5.641819804051079, -0.0007778328195415614], [5.648133118396663, -0.0007678532443964538], [5.669783872661726, -0.00075477903287609], [5.669756790569886, -0.0007184804403558929], [5.6838972574838085, -0.0007440380966657121], [5.709622109619837, -0.0007139904013495164], [5.7249580159640026, -0.0007080082084313724]], [[5.7249580159640026, -0.0007080082084313724], [5.74457492814512, -0.0006953153516604843], [5.75481532388226, -0.000689088206007877], [5.788172687020542, -0.0006695680600768395], [5.788146208415465, -0.0006696500507452721], [5.8088601453432105, -0.0006581233921964776], [5.845088065727537, -0.0006390152452359459], [5.865983400909879, -0.0006284143204664987]], [[5.865983400909879, -0.0006284143204664987], [5.9368974728136745, -0.0005181505458471459], [5.974716055174787, -0.0005119432282784391], [6.104139483042788, -0.0004744205035197833], [6.103681352159445, -0.0005047042540612845], [6.187811406776635, -0.0004525748797661309], [6.340295897136578, -0.0004227126014315196], [6.432322155266456, -0.0002838540002267757]], [[6.432322155266456, -0.0002838540002267757], [6.492635572730933, -0.0002653595262006353], [6.523293323287217, -0.0002562112912626491], [6.620550746380207, -0.00022587909468659018], [6.620434431495475, -0.000226159634873835], [6.679058402228769, -0.0002072983291974374], [6.778904490154253, -0.0001750077213478812], [6.835241060050958, -0.00015639221227831124]], [[6.835241060050958, -0.00015639221227831124], [6.930555808156054, -0.00012376339840608833], [6.978993133598635, -0.00010779692868094753], [7.134445753717817, -5.31912444855483e-5], [7.134105936611992, -5.414446644321554e-5], [7.228778044801291, -1.9227302804067543e-5], [7.388370787963056, -4.994091027037736e-5], [7.478654048355648, -1.986761972796059e-5]], [[7.478654048355648, -1.986761972796059e-5], [7.537169660823527, -1.928349148201669e-6], [7.566536442073205, 6.850053594182996e-6], [7.657369513164216, 3.509053024003568e-5], [7.657309637890977, 3.4917365151591016e-5], [7.710614699408283, 5.189545707334504e-5], [7.799268768096294, 8.027517892440252e-5], [7.84813853856072, 9.61698335487423e-5]], [[7.84813853856072, 9.61698335487423e-5], [7.904966266552661, 0.00011504603772948159], [7.9334407481538, 0.00012426883560302197], [8.021143517187268, 0.0001536745503856003], [8.021094516011214, 0.0001535190645245198], [8.072349644413938, 0.00017104607124042263], [8.157282148146878, 0.00020017810684839436], [8.203920346351742, 0.00021637613853380845]]], SciMLBase.ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Any}, SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}, SciMLBase.StandardODEProblem}(SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}(GasChromatographySimulator.odesystem_r!, LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, SciMLBase.DEFAULT_OBSERVED, nothing), [0.0, 0.0], (0.0, 2.05), Any[GasChromatographySimulator.Column(2.05, 0.000104, [0.000104], 1.04e-7, [1.04e-7], "FS5ms", "He"), GasChromatographySimulator.Program{GasChromatographySimulator.var"#gf#2"{String, Matrix{Float64}}}([0.0, 0.9200000000000003, 0.9100000000000007, 0.9199999999999986, 0.9199999999999995, 0.910000000000001, 0.9199999999999999, 0.9199999999999982, 0.9200000000000008, 0.9300000000000006 … 0.9199999999999875, 0.9100000000000108, 0.9200000000000017, 0.9099999999999966, 0.9200000000000017, 0.9099999999999966, 0.9200000000000017, 0.9099999999999966, 0.9099999999999966, 0.9200000000000017], [49.323, 48.954, 49.323, 49.077, 49.569, 49.446, 48.831, 49.323, 49.077, 49.077 … 63.099, 56.211, 51.414, 48.339, 46.74, 45.51, 44.895, 44.28, 43.911, 43.542], [354589.48, 354562.67000000004, 354589.48, 354571.61, 354607.32, 354598.4, 354553.72, 354589.48, 354571.61, 354571.61 … 355560.34, 355082.14, 354740.58, 354517.9, 354400.94, 354310.42000000004, 354264.98, 354219.43, 354192.04000000004, 354164.6], [230168.87, 230224.3, 230168.87, 230205.81999999998, 230131.96, 230150.41, 230242.79, 230168.87, 230205.81999999998, 230205.81999999998 … 228154.50999999998, 229148.40000000002, 229856.25, 230316.84999999998, 230558.51, 230745.38999999998, 230839.16, 230933.15000000002, 230989.65000000002, 231046.23], GasChromatographySimulator.var"#gf#2"{String, Matrix{Float64}}("outlet", [-2.829 0.0 2.05 -3.0; -2.46 0.0 2.05 -3.0; … ; -1.23 0.0 2.05 -3.0; -0.984 0.0 2.05 -3.0]), [-2.829 0.0 2.05 -3.0; -2.46 0.0 2.05 -3.0; … ; -1.23 0.0 2.05 -3.0; -0.984 0.0 2.05 -3.0], 2051×108 extrapolate(interpolate((0.0:0.001:2.05,::Vector{Float64}), ::Matrix{Float64}, Gridded(Linear())), Flat()) with element type Float64:
319.644 319.644 319.644 319.89 … 316.077 315.954 315.831 315.708
319.644 319.644 319.644 319.89 316.077 315.954 315.831 315.708
319.645 319.644 319.645 319.89 316.077 315.954 315.831 315.708
319.645 319.645 319.645 319.891 316.078 315.954 315.831 315.708
319.645 319.645 319.645 319.891 316.078 315.955 315.831 315.708
319.645 319.645 319.645 319.891 … 316.078 315.955 315.832 315.708
319.646 319.645 319.646 319.891 316.078 315.955 315.832 315.709
319.646 319.646 319.646 319.892 316.078 315.955 315.832 315.709
319.646 319.646 319.646 319.892 316.079 315.955 315.832 315.709
319.646 319.646 319.646 319.892 316.079 315.955 315.832 315.709
⋮ ⋱ ⋮
322.44 322.075 322.44 322.199 318.022 317.413 317.046 316.68
322.444 322.079 322.444 322.203 318.025 317.415 317.048 316.682
322.448 322.082 322.448 322.206 318.028 317.417 317.05 316.683
322.452 322.086 322.452 322.21 … 318.03 317.419 317.052 316.685
322.456 322.089 322.456 322.213 318.033 317.421 317.054 316.686
322.46 322.093 322.46 322.217 318.036 317.423 317.056 316.688
322.465 322.097 322.465 322.22 318.039 317.426 317.057 316.689
322.469 322.1 322.469 322.224 318.042 317.428 317.059 316.691
322.473 322.104 322.473 322.227 … 318.045 317.43 317.061 316.692, 108-element extrapolate(interpolate((::Vector{Float64},), ::Vector{Float64}, Gridded(Linear())), Flat()) with element type Float64:
354589.48
354562.67000000004
354589.48
354571.61
354607.32
354598.4
354553.72
354589.48
354571.61
354571.61
⋮
355082.14
354740.58
354517.9
354400.94
354310.42000000004
354264.98
354219.43
354192.04000000004
354164.6, 108-element extrapolate(interpolate((::Vector{Float64},), ::Vector{Float64}, Gridded(Linear())), Flat()) with element type Float64:
230168.87
230224.3
230168.87
230205.81999999998
230131.96
230150.41
230242.79
230168.87
230205.81999999998
230205.81999999998
⋮
229148.40000000002
229856.25
230316.84999999998
230558.51
230745.38999999998
230839.16
230933.15000000002
230989.65000000002
231046.23), GasChromatographySimulator.Substance("C29", "630-3-5", 614.55, 41.67, 183.07, 0.001, "Leppert2020b, alkane", 6.784748059430345e-5, 0.0, 0.0), GasChromatographySimulator.Options(OwrenZen5(), 1.0e-6, 0.001, "inlet", true, false, "Blumberg", "Pressure")], Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}(), SciMLBase.StandardODEProblem()), OwrenZen5(), OrdinaryDiffEq.InterpolationData{SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}}(SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}(GasChromatographySimulator.odesystem_r!, LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, SciMLBase.DEFAULT_OBSERVED, nothing), [[0.0, 0.0], [1.353950782485259, 115581.61570052925], [1.8030657280758542, 153926.00795229033], [1.8374938210156222, 156736.82343166316], [1.8534860705892038, 157897.03524953965], [2.0128405030905436, 169326.6640442685], [2.712247692759825, 216750.66850079567], [2.891545459528724, 229706.98819819855], [2.969024470608358, 235319.33935133554], [3.7372243330464534, 289484.2539375773] … [46.455362498341124, 0.0025559435202245277], [47.12631411855227, 0.002471722955819621], [48.30780543189041, 0.0023515213408450207], [48.77760695322967, 0.0022915327254370964], [49.203323095618295, 0.0022423396355875412], [50.20564999592017, 0.0021631357341228767], [50.69202200606419, 0.002146691134560216], [51.324964417418656, 0.002139988549583441], [51.644516579344355, 0.0021414942693056896], [51.93032028538035, 0.002146999045635138]], [0.0, 3.6265939333372994e-9, 4.8295489330527974e-9, 4.9217673217196995e-9, 4.964629119198694e-9, 5.3932470939886395e-9, 7.3075493520358506e-9, 7.806530896578124e-9, 8.022727214497269e-9, 1.0184690393688723e-8 … 1.1586068596439265, 1.278329735480366, 1.4904667806565701, 1.5732895142592405, 1.6468079771694424, 1.8106164594071357, 1.8840317094462427, 1.972655500307139, 2.0143759220553137, 2.05], [[[0.0, 0.0]], [[3.7334653948362225e8, 3.1872405468489234e13], [3.73343482993236e8, 3.187106521153891e13], [3.7334195774350405e8, 3.1870396410824516e13], [3.7333739386866015e8, 3.186839519371569e13], [3.733373938686627e8, 3.186839519372254e13], [3.7333479396567965e8, 3.186725516374732e13], [3.7333772475762147e8, 3.1872791960610953e13], [3.7334003017769676e8, 3.187381144145828e13]], [[3.7334003017769676e8, 3.187381144145828e13], [3.7334105123455685e8, 3.187426291138057e13], [3.7334156209993637e8, 3.1874488795544117e13], [3.7334309603107953e8, 3.187516703020632e13], [3.7334309603107953e8, 3.1875167030206066e13], [3.733439734649601e8, 3.187555498814151e13], [3.733454006935727e8, 3.1876186032767344e13], [3.733461699183988e8, 3.1876526140321473e13]], [[3.733461699183988e8, 3.1876526140321473e13], [3.733462485715731e8, 3.187656091617601e13], [3.7334628790013784e8, 3.1876578304979227e13], [3.733464058936852e8, 3.187663047480942e13], [3.733464058936852e8, 3.187663047480942e13], [3.733464733238652e8, 3.187666028846219e13], [3.732981979661716e8, 2.7123345596473074e13], [3.732330401258126e8, 2.710566041459371e13]], [[3.732330401258126e8, 2.710566041459371e13], [3.7319266685755235e8, 2.7093319001284355e13], [3.7317248685779756e8, 2.7087153156218363e13], [3.731119537372153e8, 2.706865989037851e13], [3.731119537435958e8, 2.7068659901249145e13], [3.730773724260221e8, 2.7058098590051363e13], [3.73021191816925e8, 2.704094621095589e13], [3.729909479063241e8, 2.703171530066831e13]], [[3.729909479063241e8, 2.703171530066831e13], [3.725879583444065e8, 2.690880188929146e13], [3.723871245127453e8, 2.6847828257644598e13], [3.717853013169337e8, 2.66653218554524e13], [3.7178530766962636e8, 2.666533267798853e13], [3.714422980636194e8, 2.6561650214906023e13], [3.708863012798328e8, 2.639413476038496e13], [3.7058762398098594e8, 2.630441628147444e13]], [[3.7058762398098594e8, 2.630441628147444e13], [3.688149551287259e8, 2.5773883471822188e13], [3.679414573046032e8, 2.5517815235589695e13], [3.653336257819473e8, 2.475681006904855e13], [3.653341740202484e8, 2.4757733016274465e13], [3.638604549493572e8, 2.433327540924147e13], [3.6149246855604804e8, 2.3662036366454895e13], [3.6023036363968986e8, 2.3308869062945758e13]], [[3.6023036363968986e8, 2.3308869062945758e13], [3.5979358096693873e8, 2.318730422154972e13], [3.5962816379045516e8, 2.634313136253159e13], [3.5930276718802303e8, 2.6226884226778145e13], [3.5930284145775265e8, 2.6308148271579902e13], [3.5911706677078414e8, 2.6171962478389242e13], [3.588158822691223e8, 2.6094658983588586e13], [3.5865377973009074e8, 2.6044072818182996e13]], [[3.5865377973009074e8, 2.6044072818182996e13], [3.58560235040309e8, 2.6015825771502457e13], [3.585134997573744e8, 2.6001728990167812e13], [3.583733322791576e8, 2.59594619786988e13], [3.583733323650733e8, 2.595946212294032e13], [3.5829328705321044e8, 2.5935343860730477e13], [3.5816329177565604e8, 2.5896205273201746e13], [3.580933343753493e8, 2.587515793602041e13]], [[3.580933343753493e8, 2.587515793602041e13], [3.5716203167240185e8, 2.559542941907937e13], [3.5670005310846394e8, 2.545819876819471e13], [3.553178267661847e8, 2.5048677726189312e13], [3.553179118663863e8, 2.5048820433452508e13], [3.545329158510761e8, 2.4817978209016555e13], [3.5326500983049613e8, 2.444813813555445e13], [3.545227019629088e8, 4.127258006323965e13]] … [[5.721202861462882, -0.0014137328745364402], [5.70983859995487, -0.0014024065518981632], [5.704281698955224, -0.0013968751701482654], [5.687874922382427, -0.0013803352928691824], [5.687878092927398, -0.0013803480278614436], [5.67873093387923, -0.0013710259396793713], [5.6642265183859, -0.0013561129867956804], [5.658481516171169, -0.0007209801927764896]], [[5.658481516171169, -0.0007209801927764896], [5.636890883253181, -0.0007151631501146789], [5.62715229183182, -0.0007123204243241832], [5.600824068158735, -0.0007035363352500168], [5.600878138021108, -0.0007035703537601776], [5.588052477883331, -0.0006984689274742513], [5.570859646888645, -0.000690153307990311], [5.563434233713065, -0.0006856205618094224]], [[5.563434233713065, -0.0006856205618094224], [5.550941515819979, -0.0006745140190803135], [5.548752519195575, -0.000571845846259468], [5.556380059400798, -0.0005759529816550145], [5.556524056694057, -0.00047677552109678164], [5.569138963378301, -0.0005645425645211034], [5.603918182733788, -0.0005274079992455116], [5.6301193882903835, -0.0005185622517914854]], [[5.6301193882903835, -0.0005185622517914854], [5.641819804051079, -0.0007778328195415614], [5.648133118396663, -0.0007678532443964538], [5.669783872661726, -0.00075477903287609], [5.669756790569886, -0.0007184804403558929], [5.6838972574838085, -0.0007440380966657121], [5.709622109619837, -0.0007139904013495164], [5.7249580159640026, -0.0007080082084313724]], [[5.7249580159640026, -0.0007080082084313724], [5.74457492814512, -0.0006953153516604843], [5.75481532388226, -0.000689088206007877], [5.788172687020542, -0.0006695680600768395], [5.788146208415465, -0.0006696500507452721], [5.8088601453432105, -0.0006581233921964776], [5.845088065727537, -0.0006390152452359459], [5.865983400909879, -0.0006284143204664987]], [[5.865983400909879, -0.0006284143204664987], [5.9368974728136745, -0.0005181505458471459], [5.974716055174787, -0.0005119432282784391], [6.104139483042788, -0.0004744205035197833], [6.103681352159445, -0.0005047042540612845], [6.187811406776635, -0.0004525748797661309], [6.340295897136578, -0.0004227126014315196], [6.432322155266456, -0.0002838540002267757]], [[6.432322155266456, -0.0002838540002267757], [6.492635572730933, -0.0002653595262006353], [6.523293323287217, -0.0002562112912626491], [6.620550746380207, -0.00022587909468659018], [6.620434431495475, -0.000226159634873835], [6.679058402228769, -0.0002072983291974374], [6.778904490154253, -0.0001750077213478812], [6.835241060050958, -0.00015639221227831124]], [[6.835241060050958, -0.00015639221227831124], [6.930555808156054, -0.00012376339840608833], [6.978993133598635, -0.00010779692868094753], [7.134445753717817, -5.31912444855483e-5], [7.134105936611992, -5.414446644321554e-5], [7.228778044801291, -1.9227302804067543e-5], [7.388370787963056, -4.994091027037736e-5], [7.478654048355648, -1.986761972796059e-5]], [[7.478654048355648, -1.986761972796059e-5], [7.537169660823527, -1.928349148201669e-6], [7.566536442073205, 6.850053594182996e-6], [7.657369513164216, 3.509053024003568e-5], [7.657309637890977, 3.4917365151591016e-5], [7.710614699408283, 5.189545707334504e-5], [7.799268768096294, 8.027517892440252e-5], [7.84813853856072, 9.61698335487423e-5]], [[7.84813853856072, 9.61698335487423e-5], [7.904966266552661, 0.00011504603772948159], [7.9334407481538, 0.00012426883560302197], [8.021143517187268, 0.0001536745503856003], [8.021094516011214, 0.0001535190645245198], [8.072349644413938, 0.00017104607124042263], [8.157282148146878, 0.00020017810684839436], [8.203920346351742, 0.00021637613853380845]]], true, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}([51.93032028538035, 0.002146999045635138], [51.644516579344355, 0.0021414942693056896], [7.84813853856072, 9.61698335487423e-5], [7.904966266552661, 0.00011504603772948159], [7.9334407481538, 0.00012426883560302197], [8.021143517187268, 0.0001536745503856003], [8.021094516011214, 0.0001535190645245198], [8.072349644413938, 0.00017104607124042263], [8.157282148146878, 0.00020017810684839436], [8.203920346351742, 0.00021637613853380845], [6.185754613289864e-8, 9.555397719657845e-11], [51.89389378534725, 0.0021460737480572174], [1.1911414112518283e-6, 3.0363522775487024e-5], OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}(0.16666666666666666, 0.0625, 0.1875, 0.25, -0.75, -0.75, 3.75, -3.0, 0.5, 0.26895043731778423, -0.7084548104956269, 0.8658892128279884, 0.15462307371928363, 0.06184922948771345, -0.02947695035460993, 0.18500664893617022, 0.4802345261121857, -0.5337849069148937, -0.013090093085106383, 0.7861107753062541, 0.08783068783068783, 0.3006060606060606, 0.22777777777777777, 0.027777777777777776, 0.06218596218596219, 0.2938217338217338, 0.16666666666666666, 0.25, 0.5, 0.5, 0.6428571428571429, 0.875, -0.19894179894179895, 0.9115151515151515, -1.9777777777777779, -0.1111111111111111, 1.67013727013727, -0.2938217338217338, 1.892063492063492, -6.067155067155067, 7.282458282458283, -4.0195360195360195, -7.214545454545455, 20.676923076923078, -20.31142191142191, 7.14965034965035, 7.866666666666666, -18.78205128205128, 13.508547008547009, -2.3653846153846154, 2.0, -5.294871794871795, 4.534188034188034, -1.2115384615384615, -1.4924630924630924, 1.5785667324128863, 1.1958838881915805, -1.219801565955412, -7.051721611721612, 16.273203719357564, -11.978886071193763, 3.0512256973795435, 4.0, -8.384615384615385, 5.769230769230769, -1.3846153846153846))), true, 0, DiffEqBase.DEStats
Number of function 1 evaluations: 3412
Number of function 2 evaluations: 0
Number of W matrix evaluations: 0
Number of linear solves: 0
Number of Jacobians created: 0
Number of nonlinear solver iterations: 0
Number of nonlinear solver convergence failures: 0
Number of rootfind condition calls: 0
Number of accepted steps: 220
Number of rejected steps: 267, :Success), SciMLBase.ODESolution{Float64, 2, Vector{Vector{Float64}}, Nothing, Nothing, Vector{Float64}, Vector{Vector{Vector{Float64}}}, SciMLBase.ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Any}, SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}, SciMLBase.StandardODEProblem}, OwrenZen5, OrdinaryDiffEq.InterpolationData{SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}}, DiffEqBase.DEStats}([[0.0, 0.0], [1.3187642859088071, 243403.837591554], [1.7604241024383327, 324931.32796057034], [1.8326406968616644, 338262.56019099266], [2.5441010737157543, 444380.4508230425], [2.751524375200764, 473434.3932426464], [3.5376790184705658, 594349.8298337053], [3.6503530892119986, 611172.6850167135], [3.6761228695181, 615780.3532997813], [3.6874063134699377, 618620.15738412] … [47.51787902179341, 0.002742479713540351], [47.83942364046855, 0.0026971798867672643], [48.35354385326897, 0.0026269662232350434], [49.26118087821737, 0.0024657971823785654], [50.4446570390694, 0.002327955816812593], [51.06191709738468, 0.0022745215966907847], [52.11028453115666, 0.0022153021996286068], [52.709192828736875, 0.002219947377412315], [53.001859607134, 0.0022291660734390004], [53.218186187234174, 0.0022274115105703272]], nothing, nothing, [0.0, 1.6612993050725305e-9, 2.2176709954710296e-9, 2.3086434791143052e-9, 3.218368315547063e-9, 3.488697603954881e-9, 4.5260734396773945e-9, 4.676140407289632e-9, 4.710509061821853e-9, 4.725549621584873e-9 … 1.1367101431566313, 1.1917764096530299, 1.28090594691501, 1.4402684744496903, 1.6445445211224943, 1.7457470824471233, 1.9043465803485933, 1.9860315920327436, 2.0234043811194895, 2.05], [[[0.0, 0.0]], [[7.938299615122509e8, 1.4652260744887288e14], [7.93823631358862e8, 1.4651660089879384e14], [7.938204723242562e8, 1.4651360341064625e14], [7.938110191716381e8, 1.4650463354326972e14], [7.938110191716434e8, 1.4650463354329884e14], [7.938056335578486e8, 1.4649952325703566e14], [7.93810328729903e8, 1.4652351696903012e14], [7.938151014278119e8, 1.465280840130299e14]], [[7.938151014278119e8, 1.465280840130299e14], [7.938172355423009e8, 1.4653012593949612e14], [7.938183032924715e8, 1.46531147565703e14], [7.938215092884287e8, 1.465342150311471e14], [7.938215092884285e8, 1.465342150311459e14], [7.938233431406529e8, 1.4653596962490056e14], [7.938263260266414e8, 1.4653882356349734e14], [7.938279336707587e8, 1.465403616962168e14]], [[7.938279336707587e8, 1.465403616962168e14], [7.938282842961558e8, 1.4654069715979088e14], [7.938284596273693e8, 1.4654086490928997e14], [7.938289856943492e8, 1.465413682268826e14], [7.938289856943494e8, 1.4654136822688262e14], [7.938292863536109e8, 1.4654165588386328e14], [7.938297750017844e8, 1.465421233992469e14], [7.937427666588868e8, 1.2415260165443662e14]], [[7.937427666588868e8, 1.2415260165443662e14], [7.897795891910353e8, 1.2154778816230188e14], [7.878279414305977e8, 1.2029245894648248e14], [7.820024328835937e8, 1.165630559699866e14], [7.820037684324833e8, 1.1656799095525072e14], [7.787132042462207e8, 1.1448978619121472e14], [7.734285155916644e8, 1.1120741925674016e14], [7.70613049959618e8, 1.0948204528138484e14]], [[7.70613049959618e8, 1.0948204528138484e14], [7.695025682509584e8, 1.088053982606999e14], [7.689497550952239e8, 1.0847063601449105e14], [7.672937950250392e8, 1.074693883188256e14], [7.672938261693808e8, 1.074694948960322e14], [7.663508139432756e8, 1.0690178803415172e14], [7.648235316168242e8, 1.0598641096641125e14], [7.640279726165966e8, 1.2056612384418994e14]], [[7.640279726165966e8, 1.2056612384418994e14], [7.619418878459202e8, 1.1920037570499522e14], [7.609074784678509e8, 1.1853098910181892e14], [7.578129478507664e8, 1.1653389621875756e14], [7.578131579588966e8, 1.1653466399057127e14], [7.560562261966308e8, 1.1540963576109028e14], [7.532193284025719e8, 1.1360849180540547e14], [7.517007563385024e8, 1.1265148196347198e14]], [[7.517007563385024e8, 1.1265148196347198e14], [7.51408520426673e8, 1.1246784113245922e14], [7.512625749701412e8, 1.1237628030179253e14], [7.508249167639451e8, 1.1210182382876497e14], [7.508249173602785e8, 1.1210182591725666e14], [7.505750610294018e8, 1.1194532571321458e14], [7.501694089084753e8, 1.1169153317966334e14], [7.499511668582258e8, 1.1155513966714366e14]], [[7.499511668582258e8, 1.1155513966714366e14], [7.498845468377486e8, 1.1151352233399884e14], [7.498512458150045e8, 1.1149272711917556e14], [7.497513520587811e8, 1.1143035327468116e14], [7.497513520658827e8, 1.1143035329938803e14], [7.496942821610458e8, 1.1139472844989047e14], [7.497832253035975e8, 1.883755093723669e14], [7.499350912447579e8, 1.8856003232355428e14]], [[7.499350912447579e8, 1.8856003232355428e14], [7.50023711701979e8, 1.8864318805987716e14], [7.500680378346469e8, 1.8868480056719322e14], [7.502010327395798e8, 1.8880966775458053e14], [7.502010327228739e8, 1.888096676700707e14], [7.502770515267854e8, 1.8888106487296725e14], [7.504006157292488e8, 1.8899715417905694e14], [7.504671675785278e8, 1.890596992273104e14]] … [[6.092713622756144, -0.0009959373913888056], [6.049420518874654, -0.0009837893817500206], [6.029197857465585, -0.000977976865036946], [5.971265035863871, -0.0009603523299561594], [5.971392296544024, -0.0009604422303419969], [5.940648313352367, -0.0009504630575396158], [5.89572326904125, -0.0008406276302316252], [5.874374615189944, -0.0008360454451805648]], [[5.874374615189944, -0.0008360454451805648], [5.861854277813338, -0.0008315442777895496], [5.8558464483016905, -0.0008293306192789494], [5.838464454790058, -0.0008226304695245264], [5.838471450513058, -0.0008226373171636931], [5.8290476695030655, -0.0008188098266342812], [5.81454593925863, -0.0008126129533245368], [5.807146358470971, -0.0008092801043781375]], [[5.807146358470971, -0.0008092801043781375], [5.792078860633556, -0.0008020366311084731], [5.785164391936296, -0.000798513764512961], [5.766201408636636, -0.0007877613373152782], [5.766222695487761, -0.0007877935834640715], [5.756733050535703, -0.0007816253952825408], [5.743487874906222, -0.0007716565737251827], [5.734664834339613, -0.0011033600994630856]], [[5.734664834339613, -0.0011033600994630856], [5.713797694406361, -0.0010706866693814348], [5.705548822650072, -0.0010557197326069626], [5.687673432629446, -0.0010101013285554335], [5.687784583807885, -0.0010108295862112531], [5.682647609946149, -0.0009849033910145693], [5.682767073527662, -0.0009450180627773915], [5.687953667029762, -0.0007432238533313603]], [[5.687953667029762, -0.0007432238533313603], [5.709585528901064, -0.0007279963522104499], [5.72321878815186, -0.0007207798120186983], [5.778463431549115, -0.0006963965602741233], [5.778227039480899, -0.0006971057703416849], [5.8196864816700025, -0.0006813862783334851], [5.904560875882473, -0.0005869915093889059], [5.960844537997643, -0.0005718792802538106]], [[5.960844537997643, -0.0005718792802538106], [6.002189557827448, -0.0005583198635929479], [6.023654322056479, -0.0005516283577869921], [6.093957225694099, -0.0005294248758300605], [6.093842574829092, -0.0005296644109961269], [6.137660870406176, -0.0005157960946597941], [6.2144601743396155, -0.0004920057682649662], [6.258952105964174, -0.0004781935418463742]], [[6.258952105964174, -0.0004781935418463742], [6.36111793813356, -0.0004231044994424688], [6.414257124534934, -0.0004142419655767562], [6.593148157325518, -0.0003740552015912219], [6.592298310325814, -0.00038772041493694053], [6.7066119437911995, -0.00034818483747792953], [6.910020777400247, -0.00030372894656672655], [7.0338093194954014, -4.886811682093019e-5]], [[7.0338093194954014, -4.886811682093019e-5], [7.126820448171643, -1.6541960586530582e-5], [7.174012668664583, -7.118146324062644e-7], [7.324612610109371, 5.301835597415049e-5], [7.324332688737978, 5.2192740849181e-5], [7.415542639697847, 8.626919387952174e-5], [7.571283613617873, 0.00014458465968356007], [7.659497476824728, 0.0001785811771234866]], [[7.659497476824728, 0.0001785811771234866], [7.715048534694013, 0.00020047217075622008], [7.742963088266635, 0.000211253150615545], [7.829152463912855, 0.000245568846575654], [7.829109636198663, 0.00024542311470704056], [7.879648167408089, 0.0002659109074366617], [7.963693437137936, 0.0003001528145646056], [8.007870377347922, -0.00011579546717705672]], [[8.007870377347922, -0.00011579546717705672], [8.049104595527675, -9.952061539914101e-5], [8.06975720494827, -9.151734679957012e-5], [8.133004977038834, -6.647176828272847e-5], [8.13298379476206, -6.654241585625671e-5], [8.169759024236006, -5.182571840482708e-5], [8.230449208688505, -2.749553925750995e-5], [8.263632128308775, -1.4101185273708572e-5]]], SciMLBase.ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, Vector{Any}, SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}, SciMLBase.StandardODEProblem}(SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}(GasChromatographySimulator.odesystem_r!, LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, SciMLBase.DEFAULT_OBSERVED, nothing), [0.0, 0.0], (0.0, 2.05), Any[GasChromatographySimulator.Column(2.05, 0.000104, [0.000104], 1.04e-7, [1.04e-7], "FS5ms", "He"), GasChromatographySimulator.Program{GasChromatographySimulator.var"#gf#2"{String, Matrix{Float64}}}([0.0, 0.9200000000000003, 0.9100000000000007, 0.9199999999999986, 0.9199999999999995, 0.910000000000001, 0.9199999999999999, 0.9199999999999982, 0.9200000000000008, 0.9300000000000006 … 0.9199999999999875, 0.9100000000000108, 0.9200000000000017, 0.9099999999999966, 0.9200000000000017, 0.9099999999999966, 0.9200000000000017, 0.9099999999999966, 0.9099999999999966, 0.9200000000000017], [49.323, 48.954, 49.323, 49.077, 49.569, 49.446, 48.831, 49.323, 49.077, 49.077 … 63.099, 56.211, 51.414, 48.339, 46.74, 45.51, 44.895, 44.28, 43.911, 43.542], [354589.48, 354562.67000000004, 354589.48, 354571.61, 354607.32, 354598.4, 354553.72, 354589.48, 354571.61, 354571.61 … 355560.34, 355082.14, 354740.58, 354517.9, 354400.94, 354310.42000000004, 354264.98, 354219.43, 354192.04000000004, 354164.6], [230168.87, 230224.3, 230168.87, 230205.81999999998, 230131.96, 230150.41, 230242.79, 230168.87, 230205.81999999998, 230205.81999999998 … 228154.50999999998, 229148.40000000002, 229856.25, 230316.84999999998, 230558.51, 230745.38999999998, 230839.16, 230933.15000000002, 230989.65000000002, 231046.23], GasChromatographySimulator.var"#gf#2"{String, Matrix{Float64}}("outlet", [-2.829 0.0 2.05 -3.0; -2.46 0.0 2.05 -3.0; … ; -1.23 0.0 2.05 -3.0; -0.984 0.0 2.05 -3.0]), [-2.829 0.0 2.05 -3.0; -2.46 0.0 2.05 -3.0; … ; -1.23 0.0 2.05 -3.0; -0.984 0.0 2.05 -3.0], 2051×108 extrapolate(interpolate((0.0:0.001:2.05,::Vector{Float64}), ::Matrix{Float64}, Gridded(Linear())), Flat()) with element type Float64:
319.644 319.644 319.644 319.89 … 316.077 315.954 315.831 315.708
319.644 319.644 319.644 319.89 316.077 315.954 315.831 315.708
319.645 319.644 319.645 319.89 316.077 315.954 315.831 315.708
319.645 319.645 319.645 319.891 316.078 315.954 315.831 315.708
319.645 319.645 319.645 319.891 316.078 315.955 315.831 315.708
319.645 319.645 319.645 319.891 … 316.078 315.955 315.832 315.708
319.646 319.645 319.646 319.891 316.078 315.955 315.832 315.709
319.646 319.646 319.646 319.892 316.078 315.955 315.832 315.709
319.646 319.646 319.646 319.892 316.079 315.955 315.832 315.709
319.646 319.646 319.646 319.892 316.079 315.955 315.832 315.709
⋮ ⋱ ⋮
322.44 322.075 322.44 322.199 318.022 317.413 317.046 316.68
322.444 322.079 322.444 322.203 318.025 317.415 317.048 316.682
322.448 322.082 322.448 322.206 318.028 317.417 317.05 316.683
322.452 322.086 322.452 322.21 … 318.03 317.419 317.052 316.685
322.456 322.089 322.456 322.213 318.033 317.421 317.054 316.686
322.46 322.093 322.46 322.217 318.036 317.423 317.056 316.688
322.465 322.097 322.465 322.22 318.039 317.426 317.057 316.689
322.469 322.1 322.469 322.224 318.042 317.428 317.059 316.691
322.473 322.104 322.473 322.227 … 318.045 317.43 317.061 316.692, 108-element extrapolate(interpolate((::Vector{Float64},), ::Vector{Float64}, Gridded(Linear())), Flat()) with element type Float64:
354589.48
354562.67000000004
354589.48
354571.61
354607.32
354598.4
354553.72
354589.48
354571.61
354571.61
⋮
355082.14
354740.58
354517.9
354400.94
354310.42000000004
354264.98
354219.43
354192.04000000004
354164.6, 108-element extrapolate(interpolate((::Vector{Float64},), ::Vector{Float64}, Gridded(Linear())), Flat()) with element type Float64:
230168.87
230224.3
230168.87
230205.81999999998
230131.96
230150.41
230242.79
230168.87
230205.81999999998
230205.81999999998
⋮
229148.40000000002
229856.25
230316.84999999998
230558.51
230745.38999999998
230839.16
230933.15000000002
230989.65000000002
231046.23), GasChromatographySimulator.Substance("C30", "638-68-6", 621.54, 41.57, 183.28, 0.001, "Leppert2020b, alkane, alkanes", 6.660172475097402e-5, 0.0, 0.0), GasChromatographySimulator.Options(OwrenZen5(), 1.0e-6, 0.001, "inlet", true, false, "Blumberg", "Pressure")], Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}(), SciMLBase.StandardODEProblem()), OwrenZen5(), OrdinaryDiffEq.InterpolationData{SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}, Vector{Vector{Float64}}, Vector{Float64}, Vector{Vector{Vector{Float64}}}, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}}(SciMLBase.ODEFunction{true, typeof(GasChromatographySimulator.odesystem_r!), LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, typeof(SciMLBase.DEFAULT_OBSERVED), Nothing}(GasChromatographySimulator.odesystem_r!, LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, SciMLBase.DEFAULT_OBSERVED, nothing), [[0.0, 0.0], [1.3187642859088071, 243403.837591554], [1.7604241024383327, 324931.32796057034], [1.8326406968616644, 338262.56019099266], [2.5441010737157543, 444380.4508230425], [2.751524375200764, 473434.3932426464], [3.5376790184705658, 594349.8298337053], [3.6503530892119986, 611172.6850167135], [3.6761228695181, 615780.3532997813], [3.6874063134699377, 618620.15738412] … [47.51787902179341, 0.002742479713540351], [47.83942364046855, 0.0026971798867672643], [48.35354385326897, 0.0026269662232350434], [49.26118087821737, 0.0024657971823785654], [50.4446570390694, 0.002327955816812593], [51.06191709738468, 0.0022745215966907847], [52.11028453115666, 0.0022153021996286068], [52.709192828736875, 0.002219947377412315], [53.001859607134, 0.0022291660734390004], [53.218186187234174, 0.0022274115105703272]], [0.0, 1.6612993050725305e-9, 2.2176709954710296e-9, 2.3086434791143052e-9, 3.218368315547063e-9, 3.488697603954881e-9, 4.5260734396773945e-9, 4.676140407289632e-9, 4.710509061821853e-9, 4.725549621584873e-9 … 1.1367101431566313, 1.1917764096530299, 1.28090594691501, 1.4402684744496903, 1.6445445211224943, 1.7457470824471233, 1.9043465803485933, 1.9860315920327436, 2.0234043811194895, 2.05], [[[0.0, 0.0]], [[7.938299615122509e8, 1.4652260744887288e14], [7.93823631358862e8, 1.4651660089879384e14], [7.938204723242562e8, 1.4651360341064625e14], [7.938110191716381e8, 1.4650463354326972e14], [7.938110191716434e8, 1.4650463354329884e14], [7.938056335578486e8, 1.4649952325703566e14], [7.93810328729903e8, 1.4652351696903012e14], [7.938151014278119e8, 1.465280840130299e14]], [[7.938151014278119e8, 1.465280840130299e14], [7.938172355423009e8, 1.4653012593949612e14], [7.938183032924715e8, 1.46531147565703e14], [7.938215092884287e8, 1.465342150311471e14], [7.938215092884285e8, 1.465342150311459e14], [7.938233431406529e8, 1.4653596962490056e14], [7.938263260266414e8, 1.4653882356349734e14], [7.938279336707587e8, 1.465403616962168e14]], [[7.938279336707587e8, 1.465403616962168e14], [7.938282842961558e8, 1.4654069715979088e14], [7.938284596273693e8, 1.4654086490928997e14], [7.938289856943492e8, 1.465413682268826e14], [7.938289856943494e8, 1.4654136822688262e14], [7.938292863536109e8, 1.4654165588386328e14], [7.938297750017844e8, 1.465421233992469e14], [7.937427666588868e8, 1.2415260165443662e14]], [[7.937427666588868e8, 1.2415260165443662e14], [7.897795891910353e8, 1.2154778816230188e14], [7.878279414305977e8, 1.2029245894648248e14], [7.820024328835937e8, 1.165630559699866e14], [7.820037684324833e8, 1.1656799095525072e14], [7.787132042462207e8, 1.1448978619121472e14], [7.734285155916644e8, 1.1120741925674016e14], [7.70613049959618e8, 1.0948204528138484e14]], [[7.70613049959618e8, 1.0948204528138484e14], [7.695025682509584e8, 1.088053982606999e14], [7.689497550952239e8, 1.0847063601449105e14], [7.672937950250392e8, 1.074693883188256e14], [7.672938261693808e8, 1.074694948960322e14], [7.663508139432756e8, 1.0690178803415172e14], [7.648235316168242e8, 1.0598641096641125e14], [7.640279726165966e8, 1.2056612384418994e14]], [[7.640279726165966e8, 1.2056612384418994e14], [7.619418878459202e8, 1.1920037570499522e14], [7.609074784678509e8, 1.1853098910181892e14], [7.578129478507664e8, 1.1653389621875756e14], [7.578131579588966e8, 1.1653466399057127e14], [7.560562261966308e8, 1.1540963576109028e14], [7.532193284025719e8, 1.1360849180540547e14], [7.517007563385024e8, 1.1265148196347198e14]], [[7.517007563385024e8, 1.1265148196347198e14], [7.51408520426673e8, 1.1246784113245922e14], [7.512625749701412e8, 1.1237628030179253e14], [7.508249167639451e8, 1.1210182382876497e14], [7.508249173602785e8, 1.1210182591725666e14], [7.505750610294018e8, 1.1194532571321458e14], [7.501694089084753e8, 1.1169153317966334e14], [7.499511668582258e8, 1.1155513966714366e14]], [[7.499511668582258e8, 1.1155513966714366e14], [7.498845468377486e8, 1.1151352233399884e14], [7.498512458150045e8, 1.1149272711917556e14], [7.497513520587811e8, 1.1143035327468116e14], [7.497513520658827e8, 1.1143035329938803e14], [7.496942821610458e8, 1.1139472844989047e14], [7.497832253035975e8, 1.883755093723669e14], [7.499350912447579e8, 1.8856003232355428e14]], [[7.499350912447579e8, 1.8856003232355428e14], [7.50023711701979e8, 1.8864318805987716e14], [7.500680378346469e8, 1.8868480056719322e14], [7.502010327395798e8, 1.8880966775458053e14], [7.502010327228739e8, 1.888096676700707e14], [7.502770515267854e8, 1.8888106487296725e14], [7.504006157292488e8, 1.8899715417905694e14], [7.504671675785278e8, 1.890596992273104e14]] … [[6.092713622756144, -0.0009959373913888056], [6.049420518874654, -0.0009837893817500206], [6.029197857465585, -0.000977976865036946], [5.971265035863871, -0.0009603523299561594], [5.971392296544024, -0.0009604422303419969], [5.940648313352367, -0.0009504630575396158], [5.89572326904125, -0.0008406276302316252], [5.874374615189944, -0.0008360454451805648]], [[5.874374615189944, -0.0008360454451805648], [5.861854277813338, -0.0008315442777895496], [5.8558464483016905, -0.0008293306192789494], [5.838464454790058, -0.0008226304695245264], [5.838471450513058, -0.0008226373171636931], [5.8290476695030655, -0.0008188098266342812], [5.81454593925863, -0.0008126129533245368], [5.807146358470971, -0.0008092801043781375]], [[5.807146358470971, -0.0008092801043781375], [5.792078860633556, -0.0008020366311084731], [5.785164391936296, -0.000798513764512961], [5.766201408636636, -0.0007877613373152782], [5.766222695487761, -0.0007877935834640715], [5.756733050535703, -0.0007816253952825408], [5.743487874906222, -0.0007716565737251827], [5.734664834339613, -0.0011033600994630856]], [[5.734664834339613, -0.0011033600994630856], [5.713797694406361, -0.0010706866693814348], [5.705548822650072, -0.0010557197326069626], [5.687673432629446, -0.0010101013285554335], [5.687784583807885, -0.0010108295862112531], [5.682647609946149, -0.0009849033910145693], [5.682767073527662, -0.0009450180627773915], [5.687953667029762, -0.0007432238533313603]], [[5.687953667029762, -0.0007432238533313603], [5.709585528901064, -0.0007279963522104499], [5.72321878815186, -0.0007207798120186983], [5.778463431549115, -0.0006963965602741233], [5.778227039480899, -0.0006971057703416849], [5.8196864816700025, -0.0006813862783334851], [5.904560875882473, -0.0005869915093889059], [5.960844537997643, -0.0005718792802538106]], [[5.960844537997643, -0.0005718792802538106], [6.002189557827448, -0.0005583198635929479], [6.023654322056479, -0.0005516283577869921], [6.093957225694099, -0.0005294248758300605], [6.093842574829092, -0.0005296644109961269], [6.137660870406176, -0.0005157960946597941], [6.2144601743396155, -0.0004920057682649662], [6.258952105964174, -0.0004781935418463742]], [[6.258952105964174, -0.0004781935418463742], [6.36111793813356, -0.0004231044994424688], [6.414257124534934, -0.0004142419655767562], [6.593148157325518, -0.0003740552015912219], [6.592298310325814, -0.00038772041493694053], [6.7066119437911995, -0.00034818483747792953], [6.910020777400247, -0.00030372894656672655], [7.0338093194954014, -4.886811682093019e-5]], [[7.0338093194954014, -4.886811682093019e-5], [7.126820448171643, -1.6541960586530582e-5], [7.174012668664583, -7.118146324062644e-7], [7.324612610109371, 5.301835597415049e-5], [7.324332688737978, 5.2192740849181e-5], [7.415542639697847, 8.626919387952174e-5], [7.571283613617873, 0.00014458465968356007], [7.659497476824728, 0.0001785811771234866]], [[7.659497476824728, 0.0001785811771234866], [7.715048534694013, 0.00020047217075622008], [7.742963088266635, 0.000211253150615545], [7.829152463912855, 0.000245568846575654], [7.829109636198663, 0.00024542311470704056], [7.879648167408089, 0.0002659109074366617], [7.963693437137936, 0.0003001528145646056], [8.007870377347922, -0.00011579546717705672]], [[8.007870377347922, -0.00011579546717705672], [8.049104595527675, -9.952061539914101e-5], [8.06975720494827, -9.151734679957012e-5], [8.133004977038834, -6.647176828272847e-5], [8.13298379476206, -6.654241585625671e-5], [8.169759024236006, -5.182571840482708e-5], [8.230449208688505, -2.749553925750995e-5], [8.263632128308775, -1.4101185273708572e-5]]], true, OrdinaryDiffEq.OwrenZen5Cache{Vector{Float64}, Vector{Float64}, Vector{Float64}, OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}}([53.218186187234174, 0.0022274115105703272], [53.001859607134, 0.0022291660734390004], [8.007870377347922, -0.00011579546717705672], [8.049104595527675, -9.952061539914101e-5], [8.06975720494827, -9.151734679957012e-5], [8.133004977038834, -6.647176828272847e-5], [8.13298379476206, -6.654241585625671e-5], [8.169759024236006, -5.182571840482708e-5], [8.230449208688505, -2.749553925750995e-5], [8.263632128308775, -1.4101185273708572e-5], [-3.658608486474742e-8, -4.7501456267755034e-12], [53.19077001885382, 0.0022274815986779778], [-6.874604345889719e-7, -1.4710131094981712e-6], OrdinaryDiffEq.OwrenZen5ConstantCache{Float64, Float64}(0.16666666666666666, 0.0625, 0.1875, 0.25, -0.75, -0.75, 3.75, -3.0, 0.5, 0.26895043731778423, -0.7084548104956269, 0.8658892128279884, 0.15462307371928363, 0.06184922948771345, -0.02947695035460993, 0.18500664893617022, 0.4802345261121857, -0.5337849069148937, -0.013090093085106383, 0.7861107753062541, 0.08783068783068783, 0.3006060606060606, 0.22777777777777777, 0.027777777777777776, 0.06218596218596219, 0.2938217338217338, 0.16666666666666666, 0.25, 0.5, 0.5, 0.6428571428571429, 0.875, -0.19894179894179895, 0.9115151515151515, -1.9777777777777779, -0.1111111111111111, 1.67013727013727, -0.2938217338217338, 1.892063492063492, -6.067155067155067, 7.282458282458283, -4.0195360195360195, -7.214545454545455, 20.676923076923078, -20.31142191142191, 7.14965034965035, 7.866666666666666, -18.78205128205128, 13.508547008547009, -2.3653846153846154, 2.0, -5.294871794871795, 4.534188034188034, -1.2115384615384615, -1.4924630924630924, 1.5785667324128863, 1.1958838881915805, -1.219801565955412, -7.051721611721612, 16.273203719357564, -11.978886071193763, 3.0512256973795435, 4.0, -8.384615384615385, 5.769230769230769, -1.3846153846153846))), true, 0, DiffEqBase.DEStats
Number of function 1 evaluations: 3489
Number of function 2 evaluations: 0
Number of W matrix evaluations: 0
Number of linear solves: 0
Number of Jacobians created: 0
Number of nonlinear solver iterations: 0
Number of nonlinear solver convergence failures: 0
Number of rootfind condition calls: 0
Number of accepted steps: 230
Number of rejected steps: 268, :Success)])The file Leppert2020b_measured_RT_med_gradient.csv contains the retention times and peak widths (as standard deviations) from the measured chromatogram.
measurement_tg = DataFrame(CSV.File("../../data/Leppert2020b/Leppert2020b_measured_RT_med_gradient.csv", header=1, silencewarnings=true));
measurement_tg[!, 3] = measurement_tg[!, 3] ./ 1000.0; # conversion from ms -> s
rename!(measurement_tg, [:Name, :tR, :τR]);22 rows × 3 columns
| Name | tR | τR | |
|---|---|---|---|
| String3 | Float64 | Float64 | |
| 1 | C9 | 14.7683 | 0.0669811 |
| 2 | C10 | 18.2283 | 0.0565467 |
| 3 | C11 | 21.0283 | 0.0526464 |
| 4 | C12 | 23.5083 | 0.0609966 |
| 5 | C13 | 25.7683 | 0.0581621 |
| 6 | C14 | 27.8883 | 0.0571819 |
| 7 | C15 | 29.8883 | 0.0574451 |
| 8 | C16 | 31.8083 | 0.0573303 |
| 9 | C17 | 33.6683 | 0.0598955 |
| 10 | C18 | 35.4683 | 0.0616608 |
| 11 | C19 | 37.2283 | 0.0638519 |
| 12 | C20 | 38.9083 | 0.0636418 |
| 13 | C21 | 40.5483 | 0.0664711 |
| 14 | C22 | 42.1283 | 0.068909 |
| 15 | C23 | 43.6683 | 0.0718497 |
| 16 | C24 | 45.1483 | 0.0726997 |
| 17 | C25 | 46.5883 | 0.0772066 |
| 18 | C26 | 48.0283 | 0.0816995 |
| 19 | C27 | 49.4283 | 0.0847638 |
| 20 | C28 | 50.8283 | 0.0920254 |
| 21 | C29 | 52.2083 | 0.0987833 |
| 22 | C30 | 53.5483 | 0.110653 |
The simulated and measured separations can be compared by comparing the peak lists:
compare_tg = GasChromatographySimulator.compare_peaklist(measurement_tg, peaklist_tg)22 rows × 9 columns
| Name | tR1 | tR2 | ΔtR | rel_tR | τR1 | τR2 | ΔτR | rel_τR | |
|---|---|---|---|---|---|---|---|---|---|
| String3 | Float64 | Float64 | Float64 | Float64 | Float64 | Float64 | Float64 | Float64 | |
| 1 | C9 | 14.7683 | 14.9798 | -0.211549 | -1.43246 | 0.0669811 | 0.049298 | 0.0176831 | 26.4001 |
| 2 | C10 | 18.2283 | 18.8744 | -0.646118 | -3.54459 | 0.0565467 | 0.0379536 | 0.0185931 | 32.881 |
| 3 | C11 | 21.0283 | 21.8124 | -0.784087 | -3.72873 | 0.0526464 | 0.0344387 | 0.0182077 | 34.5849 |
| 4 | C12 | 23.5083 | 24.2789 | -0.77061 | -3.27804 | 0.0609966 | 0.0330431 | 0.0279535 | 45.828 |
| 5 | C13 | 25.7683 | 26.4775 | -0.709279 | -2.75253 | 0.0581621 | 0.0330775 | 0.0250846 | 43.1288 |
| 6 | C14 | 27.8883 | 28.5219 | -0.633627 | -2.27202 | 0.0571819 | 0.0336235 | 0.0235584 | 41.199 |
| 7 | C15 | 29.8883 | 30.4589 | -0.570654 | -1.90929 | 0.0574451 | 0.0344016 | 0.0230435 | 40.114 |
| 8 | C16 | 31.8083 | 32.3036 | -0.495331 | -1.55724 | 0.0573303 | 0.0354683 | 0.021862 | 38.1333 |
| 9 | C17 | 33.6683 | 34.0856 | -0.41731 | -1.23948 | 0.0598955 | 0.0361809 | 0.0237146 | 39.5933 |
| 10 | C18 | 35.4683 | 35.7945 | -0.326207 | -0.919714 | 0.0616608 | 0.0371806 | 0.0244802 | 39.7014 |
| 11 | C19 | 37.2283 | 37.4543 | -0.226058 | -0.607221 | 0.0638519 | 0.0382118 | 0.0256401 | 40.1556 |
| 12 | C20 | 38.9083 | 39.0657 | -0.157394 | -0.404526 | 0.0636418 | 0.0391839 | 0.0244579 | 38.4306 |
| 13 | C21 | 40.5483 | 40.6257 | -0.077454 | -0.191017 | 0.0664711 | 0.0402336 | 0.0262375 | 39.472 |
| 14 | C22 | 42.1283 | 42.158 | -0.0297202 | -0.070547 | 0.068909 | 0.0410552 | 0.0278539 | 40.4212 |
| 15 | C23 | 43.6683 | 43.6411 | 0.0271696 | 0.0622181 | 0.0718497 | 0.0420741 | 0.0297756 | 41.4415 |
| 16 | C24 | 45.1483 | 45.1073 | 0.0409738 | 0.090754 | 0.0726997 | 0.0431222 | 0.0295775 | 40.6845 |
| 17 | C25 | 46.5883 | 46.5316 | 0.0566581 | 0.121614 | 0.0772066 | 0.0434899 | 0.0337167 | 43.6708 |
| 18 | C26 | 48.0283 | 47.9264 | 0.101906 | 0.212179 | 0.0816995 | 0.0446066 | 0.0370929 | 45.4016 |
| 19 | C27 | 49.4283 | 49.2868 | 0.141477 | 0.286226 | 0.0847638 | 0.045225 | 0.0395389 | 46.6459 |
| 20 | C28 | 50.8283 | 50.623 | 0.205224 | 0.40376 | 0.0920254 | 0.0457294 | 0.0462959 | 50.3078 |
| 21 | C29 | 52.2083 | 51.9303 | 0.27794 | 0.532367 | 0.0987833 | 0.0463357 | 0.0524475 | 53.0935 |
| 22 | C30 | 53.5483 | 53.2182 | 0.330074 | 0.616404 | 0.110653 | 0.0471955 | 0.0634578 | 57.3483 |
Differences in retention times are below 1 s, while the retention times are in the range of several seconds. Relative retention time differences are below 4%. The peak widths on the other hand are partly more than 50% higher in the measurement than in the simulation. Main reasons are peak broadening effects outside the scope of this simulation, e.g. extra-column broadening (in the detector) and asymmetric peak broadening (tailing of the peaks, especially for the later substances).
The measured and simulated separation can also be compared by a plot of the chromatograms:
chrom_tg = DataFrame(CSV.File("../../data/Leppert2020b/Leppert2020b_measured_Chrom_med_gradient_x90.csv", header=1, silencewarnings=true))
p_chrom_tg, t_, chrom_ = GasChromatographySimulator.plot_chromatogram(peaklist_tg, (0.0, 55.0); annotation=false, number=true, mirror=true, offset=0.0)
plot!(p_chrom_tg, chrom_tg[!,1].*60.0, chrom_tg[!,2].*8e-5)
ylims!(-13,13)
xlims!(0.0,55.0)
p_chrom_tg
The measured chromatogram is plotted in orange, while the simulated chromatogram is plotted in blue and mirrored.